/* =========================================================
   VELORA — COLLABORATION PAGE
   ========================================================= */
.kol-page,
.kol-single-page {
  overflow-x: clip;
  background: #fff;
}

.kol-page svg,
.kol-single-page svg {
  display: block;
}

.kol-page section[id],
.kol-single-page section[id] {
  scroll-margin-top: 106px;
}

.kol-label {
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── HERO ────────────────────────────────────────────────── */
.kol-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 68px;
  background:
    radial-gradient(circle at 86% 18%, rgba(90, 49, 244, .17), transparent 27%),
    radial-gradient(circle at 8% 82%, rgba(255, 155, 50, .13), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbfaff 100%);
}

.kol-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  gap: 58px;
  align-items: center;
}

.kol-hero-copy,
.kol-visual {
  min-width: 0;
}

.kol-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #dfd7ff;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.kol-kicker:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.kol-hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(43px, 5.8vw, 70px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.kol-hero h1 span {
  color: var(--purple);
}

.kol-lead {
  max-width: 700px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.kol-actions,
.kol-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.kol-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 27px;
  color: #667085;
  font-size: 12px;
}

.kol-mini span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.kol-mini span:before {
  content: "✓";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #eaf9f2;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
}

/* hero visual — image model */
.kol-visual {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.kol-visual:before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: 3%;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 49, 244, .17) 0%, rgba(116, 89, 255, .07) 46%, transparent 72%);
  filter: blur(2px);
  z-index: -1;
  pointer-events: none;
}

.kol-hero-model-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform-origin: center bottom;
  animation: heroModelFloatPro 7.5s cubic-bezier(.45, .05, .55, .95) infinite;
  will-change: transform;
}

.kol-hero-model-wrap:after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 16px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(90, 49, 244, .28) 0%, rgba(116, 89, 255, .12) 45%, transparent 76%);
  filter: blur(18px);
  z-index: -1;
  animation: heroModelShadowPro 7.5s cubic-bezier(.45, .05, .55, .95) infinite;
  pointer-events: none;
}

.kol-hero-model {
  display: block;
  width: auto;
  height: 610px;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 28px rgba(35, 24, 93, .18));
  opacity: 0;
  animation: heroModelRevealPro 1.05s cubic-bezier(.22, 1, .36, 1) .08s forwards;
  transition: transform .35s ease, filter .35s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.kol-visual:hover .kol-hero-model {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 34px 40px rgba(35, 24, 93, .23));
}

@keyframes heroModelRevealPro {
  0% {
    opacity: 0;
    clip-path: inset(8% 0 0 0 round 18px);
    filter: drop-shadow(0 10px 12px rgba(35, 24, 93, .10));
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 18px);
    filter: drop-shadow(0 26px 28px rgba(35, 24, 93, .18));
  }
}

@keyframes heroModelFloatPro {
  0%, 100% { transform: translate3d(8px, 0, 0) rotate(0deg); }
  25% { transform: translate3d(14px, -10px, 0) rotate(.35deg); }
  50% { transform: translate3d(8px, -18px, 0) rotate(0deg); }
  75% { transform: translate3d(2px, -9px, 0) rotate(-.35deg); }
}

@keyframes heroModelShadowPro {
  0%, 100% { transform: scale(.98); opacity: .72; }
  50% { transform: scale(1.06); opacity: .9; }
}

/* ── STATISTICS BAR ──────────────────────────────────────── */
.kol-statbar {
  padding-bottom: 24px;
  background: #fbfaff;
}

.kol-statgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 24, 40, .07);
}

.kol-stat {
  min-width: 0;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.kol-stat:last-child {
  border-right: 0;
}

.kol-stat strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--purple);
  font-size: 23px;
  line-height: 1.1;
}

.kol-stat span {
  color: #7b8495;
  font-size: 10px;
}

/* ── SHARED SECTION / HEAD ───────────────────────────────── */
.kol-section {
  padding: 86px 0;
}

.kol-soft {
  background: #f8f9fd;
}

.kol-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 30px;
}

.kol-head h2,
.kol-toolbar h2,
.kol-dashboard-copy h2,
.kol-faq-copy h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.kol-head p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ── PROGRAM EXPLORER (TOOLBAR + GRID) ───────────────────── */
.kol-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.kol-toolbar > div:first-child {
  flex: 1 1 320px;
}

.kol-filter-wrap {
  display: flex;
  flex: 1 1 560px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.kol-filter-group {
  display: grid;
  gap: 6px;
}

.kol-filter-group label {
  color: #475467;
  font-size: 10px;
  font-weight: 800;
}

.kol-search {
  display: flex;
  width: 275px;
  height: 42px;
  overflow: hidden;
  border: 1px solid #d9dde5;
  border-radius: 10px;
  background: #fff;
}

.kol-search:focus-within,
.kol-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(90, 49, 244, .12);
  outline: 0;
}

.kol-search input {
  flex: 1;
  min-width: 0;
  padding: 0 13px;
  border: 0;
  background: transparent;
  color: #344054;
  font: inherit;
  font-size: 12px;
  outline: 0;
}

.kol-search button {
  width: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--purple);
  color: #fff;
  cursor: pointer;
}

.kol-search button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.kol-select {
  min-width: 142px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid #d9dde5;
  border-radius: 10px;
  background: #fff;
  color: #344054;
  font: inherit;
  font-size: 12px;
}

.kol-count {
  margin: 0 0 14px;
  color: #7a8494;
  font-size: 11px;
}

/* 5-column grid desktop */
.kol-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

/* ── PROGRAM CARD ────────────────────────────────────────── */
.kol-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 9px;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 24, 40, .035);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.kol-card-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: .70;
  min-width: 0;
  margin-bottom: 12px;
  padding: 16px 14px 13px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
}

.kol-cover-1 { background: linear-gradient(155deg, #23145f, #6041d9 64%, #9d8aff); }
.kol-cover-2 { background: linear-gradient(155deg, #0d4955, #218b9c 65%, #7ecbd4); }
.kol-cover-3 { background: linear-gradient(155deg, #835014, #d78a23 65%, #ffc068); }
.kol-cover-4 { background: linear-gradient(155deg, #39226e, #7253d9 58%, #ff9b32); }
.kol-cover-5 { background: linear-gradient(155deg, #1d2939, #475467 65%, #98a2b3); }
.kol-cover-6 { background: linear-gradient(155deg, #6f2342, #b14f78 65%, #df9bb7); }

.kol-card-cover--image {
  padding: 0;
  background: #eeebfa;
}

.kol-card-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kol-card-cover small,
.kol-card-cover strong,
.kol-card-cover > span {
  position: relative;
  z-index: 1;
}

.kol-card-cover small {
  font-size: 8px;
  letter-spacing: .12em;
  opacity: .82;
  text-transform: uppercase;
}

.kol-card-cover strong {
  overflow-wrap: anywhere;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.kol-card-cover > span {
  font-size: 8px;
  opacity: .8;
}

.kol-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 0 2px 2px;
}

.kol-status {
  align-self: flex-start;
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 7px;
  border-radius: 999px;
  background: #f2f4f7;
  color: #667085;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.kol-status--active { background: #eaf9f2; color: var(--green); }
.kol-status--coming_soon { background: #fff5e8; color: #a85c12; }

.kol-card-title {
  display: -webkit-box;
  height: 36px;
  margin: 0 0 8px;
  overflow: hidden;
  color: #24324a;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.kol-card-title a {
  color: inherit;
}

.kol-card-taxonomies {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.kol-chip {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 0 8px;
  border: 1px dashed #47c2da;
  border-radius: 999px;
  background: #eefaff;
  color: #1597ad;
  font-size: 8.5px;
  font-weight: 800;
}

.kol-chip--muted {
  border-color: #d7d1f8;
  background: #f7f5ff;
  color: var(--purple);
}

.kol-price-label {
  color: #8a94a5;
  font-size: 9px;
}

.kol-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 1px 0 9px;
}

.kol-price strong {
  color: var(--purple);
  font-size: 14px;
}

.kol-price span {
  color: #7b8494;
  font-size: 9px;
}

.kol-deadline {
  margin: 0 0 9px;
  color: #667085;
  font-size: 9px;
}

.kol-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.kol-slot {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.kol-join,
.kol-card-state {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 850;
}

.kol-join {
  background: var(--purple);
  color: #fff;
}

.kol-card-state {
  background: #f2f4f7;
  color: #667085;
}

.kol-progress {
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eceef2;
}

.kol-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--orange));
}

.kol-empty {
  padding: 44px 28px;
  border: 1px dashed #d9d2f7;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.kol-empty h3 { margin: 0 0 6px; }
.kol-empty p { max-width: 650px; margin: 0 auto 18px; color: var(--muted); }

.kol-pagination { margin-top: 30px; }

.kol-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kol-pagination a,
.kol-pagination .current {
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.kol-pagination .current {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
}

/* ── STAGGER REVEAL + SHINE (PROGRAM CARDS) ──────────────── */
#paket-kolaborasi .kol-card {
  position: relative;
  overflow: hidden;
  transform-origin: center bottom;
  will-change: transform, opacity, box-shadow;
}

#paket-kolaborasi .kol-card.kol-reveal {
  opacity: 0;
  transform: translateY(24px) scale(.975);
}

#paket-kolaborasi .kol-card.kol-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: kolBookReveal .7s cubic-bezier(.2, .8, .2, 1) both;
}

#paket-kolaborasi .kol-card:nth-child(1) { animation-delay: .03s; }
#paket-kolaborasi .kol-card:nth-child(2) { animation-delay: .09s; }
#paket-kolaborasi .kol-card:nth-child(3) { animation-delay: .15s; }
#paket-kolaborasi .kol-card:nth-child(4) { animation-delay: .21s; }
#paket-kolaborasi .kol-card:nth-child(5) { animation-delay: .27s; }
#paket-kolaborasi .kol-card:nth-child(6) { animation-delay: .33s; }
#paket-kolaborasi .kol-card:nth-child(7) { animation-delay: .39s; }
#paket-kolaborasi .kol-card:nth-child(8) { animation-delay: .45s; }
#paket-kolaborasi .kol-card:nth-child(9) { animation-delay: .51s; }
#paket-kolaborasi .kol-card:nth-child(10) { animation-delay: .57s; }

#paket-kolaborasi .kol-card:after {
  content: "";
  position: absolute;
  top: -35%;
  left: -70%;
  width: 45%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .48), transparent);
  transform: rotate(18deg);
  opacity: 0;
  pointer-events: none;
}

#paket-kolaborasi .kol-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: #cfc5ff;
  box-shadow: 0 22px 46px rgba(90, 49, 244, .15);
}

#paket-kolaborasi .kol-card:hover:after {
  opacity: 1;
  animation: kolBookShine .85s ease forwards;
}

#paket-kolaborasi .kol-card-cover {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), filter .35s ease, box-shadow .35s ease;
}

#paket-kolaborasi .kol-card:hover .kol-card-cover {
  transform: translateY(-2px) rotate(-.7deg) scale(1.015);
  filter: saturate(1.07) contrast(1.02);
  box-shadow: 0 14px 28px rgba(16, 24, 40, .14);
}

#paket-kolaborasi .kol-progress span {
  transform-origin: left center;
  transition: width .45s ease, filter .3s ease;
}

#paket-kolaborasi .kol-card:hover .kol-progress span {
  filter: saturate(1.25);
}

@keyframes kolBookReveal {
  from { opacity: 0; transform: translateY(24px) scale(.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes kolBookShine {
  from { left: -70%; }
  to { left: 145%; }
}

/* ── BENEFITS (PREMIUM) ─────────────────────────────────── */
.kol-benefit-shell {
  position: relative;
  padding: 8px 0 2px;
}

.kol-benefit-shell:before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 49, 244, .08), rgba(90, 49, 244, 0) 68%);
  pointer-events: none;
}

.kol-benefits {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.kol-benefit {
  position: relative;
  overflow: hidden;
  min-height: 252px;
  padding: 25px 23px 22px;
  border: 1px solid #e5e7ef;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fcfbff 100%);
  box-shadow: 0 10px 28px rgba(16, 24, 40, .045);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.kol-benefit:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--purple2), var(--orange));
  opacity: .88;
}

.kol-benefit:after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -58px;
  bottom: -64px;
  border-radius: 50%;
  border: 1px solid rgba(90, 49, 244, .10);
  background: rgba(90, 49, 244, .025);
  transition: transform .35s ease;
}

.kol-benefit:hover {
  transform: translateY(-7px);
  border-color: #d6ceff;
  box-shadow: 0 22px 48px rgba(90, 49, 244, .10);
}

.kol-benefit:hover:after {
  transform: scale(1.16);
}

.kol-benefit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 25px;
}

.kol-benefit-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #eee9ff, #f8f6ff);
  color: var(--purple);
  border: 1px solid #ddd6ff;
  box-shadow: 0 8px 20px rgba(90, 49, 244, .09);
  margin: 0;
}

.kol-benefit-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kol-benefit-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 27px;
  padding: 0 9px;
  border-radius: 999px;
  background: #f7f5ff;
  border: 1px solid #e4dfff;
  color: #7768b9;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}

.kol-benefit h4 {
  margin: 0 0 9px;
  color: #172033;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -.02em;
}

.kol-benefit p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.72;
}

.kol-benefit-foot {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--purple);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kol-benefit-foot:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ── PROCESS (CARA BERGABUNG) ────────────────────────────── */
.kol-process-wrap {
  position: relative;
  padding: 34px 28px 28px;
  border: 1px solid #e3e5ed;
  border-radius: 28px;
  background:
    radial-gradient(circle at 4% 0, rgba(90, 49, 244, .08), transparent 24%),
    radial-gradient(circle at 96% 100%, rgba(255, 155, 50, .08), transparent 25%),
    #fff;
  box-shadow: 0 18px 44px rgba(16, 24, 40, .06);
}

.kol-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

/* connector line desktop */
.kol-process:before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), #927dff 68%, var(--orange));
  z-index: 0;
}

.kol-step {
  position: relative;
  z-index: 1;
  min-height: 235px;
  padding: 19px 18px 20px;
  border: 1px solid #e5e7ee;
  border-radius: 20px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 20px rgba(16, 24, 40, .035);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.kol-step:hover {
  transform: translateY(-6px);
  border-color: #d7ceff;
  box-shadow: 0 18px 36px rgba(90, 49, 244, .10);
}

.kol-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.kol-step-num {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--purple), var(--purple2));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(90, 49, 244, .20);
}

.kol-step:last-child .kol-step-num {
  background: linear-gradient(145deg, #d87918, var(--orange));
  box-shadow: 0 10px 22px rgba(255, 155, 50, .20);
}

.kol-step-tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f5f3ff;
  color: #6a55cd;
  border: 1px solid #e1dbff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kol-step:last-child .kol-step-tag {
  color: #a75d13;
  background: #fff5e9;
  border-color: #ffdfbc;
}

.kol-step h4 {
  margin: 0 0 8px;
  color: #182033;
  font-size: 15.5px;
  line-height: 1.3;
  letter-spacing: -.015em;
}

.kol-step p {
  margin: 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.68;
}

.kol-step-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: #8a94a5;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.kol-step-status:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4cad4;
}

.kol-step:last-child .kol-step-status { color: var(--green); }
.kol-step:last-child .kol-step-status:before { background: var(--green); }

.kol-process-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 15px 17px;
  border: 1px solid #e5e0ff;
  border-radius: 16px;
  background: #f8f7ff;
}

.kol-process-bottom strong {
  color: #344054;
  font-size: 12.5px;
}

.kol-process-bottom span {
  color: #7b8494;
  font-size: 11px;
}

/* ── CTA KOLABORASI (IMAGE + PURPLE GRADIENT) ────────────── */
.kol-collab-cta {
  position: relative;
  overflow: hidden;
  padding: 58px 0 38px;
}

.kol-collab-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 15%, rgba(116, 89, 255, .14), transparent 24%),
    radial-gradient(circle at 12% 92%, rgba(255, 155, 50, .10), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  pointer-events: none;
}

.kol-collab-cta-shell {
  position: relative;
  z-index: 1;
  min-height: 510px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 26px;
  overflow: hidden;
  padding: 48px 48px 42px;
  border: 1px solid #ddd6ff;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .18), transparent 24%),
    radial-gradient(circle at 15% 100%, rgba(255, 155, 50, .19), transparent 25%),
    linear-gradient(135deg, #3420a9 0%, #5330e7 47%, #7459ff 100%);
  box-shadow: 0 28px 72px rgba(63, 34, 199, .22);
}

.kol-collab-cta-shell:before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -130px;
  top: -180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 0 0 48px rgba(255, 255, 255, .035), 0 0 0 94px rgba(255, 255, 255, .025);
  pointer-events: none;
}

.kol-collab-cta-shell:after {
  content: "";
  position: absolute;
  left: 46%;
  bottom: -110px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .055);
  filter: blur(1px);
  pointer-events: none;
}

.kol-collab-cta-copy {
  position: relative;
  z-index: 3;
  max-width: 555px;
  padding: 4px 0 8px;
}

.kol-collab-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  color: #f4f1ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.kol-collab-cta-eyebrow:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffc15d;
  box-shadow: 0 0 0 4px rgba(255, 193, 93, .12);
}

.kol-collab-cta h2 {
  max-width: 600px;
  margin: 0 0 15px;
  color: #fff;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.kol-collab-cta h2 span { color: #ffd07f; }

.kol-collab-cta-copy > p {
  max-width: 540px;
  margin: 0;
  color: #e9e5ff;
  font-size: 14px;
  line-height: 1.75;
}

.kol-collab-cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 24px;
}

.kol-collab-cta-feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: #f6f3ff;
  font-size: 10.5px;
  font-weight: 750;
}

.kol-collab-cta-feature:before {
  content: "✓";
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(116, 255, 190, .16);
  color: #8af0bd;
  font-size: 9px;
  font-weight: 900;
}

.kol-collab-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kol-collab-cta-primary,
.kol-collab-cta-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 850;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.kol-collab-cta-primary {
  background: #fff;
  color: #4025c4;
  box-shadow: 0 12px 26px rgba(24, 14, 84, .20);
}

.kol-collab-cta-primary:after { content: "→"; font-size: 16px; transition: transform .2s ease; }

.kol-collab-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(24, 14, 84, .27);
}

.kol-collab-cta-primary:hover:after { transform: translateX(3px); }

.kol-collab-cta-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .23);
  background: rgba(255, 255, 255, .07);
}

.kol-collab-cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .13);
}

.kol-collab-cta-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
  color: #d6cffb;
  font-size: 10px;
}

.kol-collab-cta-note:before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, .35);
}

.kol-collab-cta-visual {
  position: relative;
  z-index: 2;
  min-height: 440px;
  align-self: end;
}

.kol-collab-cta-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 2%;
  top: 2%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  filter: blur(3px);
  pointer-events: none;
}

.kol-collab-cta-image {
  position: absolute;
  z-index: 2;
  right: -46px;
  bottom: -70px;
  width: min(720px, 112%);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 35px rgba(20, 12, 77, .22));
  transform: translateZ(0);
  animation: kolCtaFloat 6s ease-in-out infinite;
}

.kol-collab-cta-chip {
  position: absolute;
  z-index: 4;
  left: 2%;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 15px;
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(22, 14, 75, .16);
}

.kol-collab-cta-chip-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: #5a31f4;
  font-size: 17px;
  font-weight: 900;
}

.kol-collab-cta-chip b {
  display: block;
  color: #fff;
  font-size: 10.5px;
  line-height: 1.2;
}

.kol-collab-cta-chip small {
  display: block;
  margin-top: 2px;
  color: #ddd7ff;
  font-size: 8.5px;
}

@keyframes kolCtaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ── FAQ (PREMIUM ACCORDION) ────────────────────────────── */
.kol-faq {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 54px;
}

.kol-faq-copy h2 {
  margin-bottom: 13px;
}

.kol-faq-copy p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.75;
}

.kol-faq-list {
  display: grid;
  gap: 12px;
}

.kol-faq-list details {
  overflow: hidden;
  border: 1px solid #e2e5ec;
  border-radius: 17px;
  padding: 0;
  background: #fff;
  box-shadow: 0 7px 18px rgba(16, 24, 40, .025);
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.kol-faq-list details[open] {
  border-color: #d7ceff;
  background: linear-gradient(180deg, #fff 0%, #fcfbff 100%);
  box-shadow: 0 13px 30px rgba(90, 49, 244, .07);
}

.kol-faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 21px;
  color: #263148;
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 750;
  letter-spacing: -.01em;
}

.kol-faq-list summary::-webkit-details-marker { display: none; }

.kol-faq-list summary:after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #f3f0ff;
  color: var(--purple);
  border: 1px solid #e1dcff;
  font-size: 18px;
  font-weight: 500;
  transition: .2s ease;
}

.kol-faq-list details[open] summary:after {
  content: "−";
  color: #fff;
  background: var(--purple);
  border-color: var(--purple);
}

.kol-faq-list details[open] summary {
  color: var(--purple-dark);
}

.kol-faq-list p {
  margin: 0;
  padding: 0 54px 20px 21px;
  color: #667085;
  font-size: 13.5px;
  line-height: 1.75;
}

/* ── FINAL CTA (GRADIENT + PANEL) ────────────────────────── */
.kol-final {
  padding: 78px 0 0;
}

.kol-final-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr);
  gap: 42px;
  align-items: center;
  padding: 48px 50px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, .18), transparent 23%),
    radial-gradient(circle at 8% 110%, rgba(255, 155, 50, .22), transparent 27%),
    linear-gradient(135deg, #3220a7 0%, #5a31f4 50%, #7459ff 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 30px 70px rgba(63, 34, 199, .25);
}

.kol-final-box:before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -120px;
  top: -150px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 0 0 46px rgba(255, 255, 255, .025), 0 0 0 92px rgba(255, 255, 255, .018);
  pointer-events: none;
}

.kol-final-box:after {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  width: 22%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .10), transparent);
  transform: skewX(-18deg);
  animation: kolFinalShine 7s ease-in-out infinite;
  pointer-events: none;
}

.kol-final-copy,
.kol-final-panel {
  position: relative;
  z-index: 1;
}

.kol-final-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 31px;
  padding: 0 11px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #f2efff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.kol-final-eyebrow:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffb85f;
  box-shadow: 0 0 0 4px rgba(255, 184, 95, .14);
}

.kol-final h2 {
  max-width: 720px;
  margin: 0 0 13px;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.07;
  letter-spacing: -.045em;
}

.kol-final h2 span { color: #ffd49b; }

.kol-final p {
  max-width: 690px;
  margin: 0;
  color: #e8e5ff;
  font-size: 14px;
  line-height: 1.75;
}

.kol-final-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.kol-final-point {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #f4f1ff;
  font-size: 10.5px;
  font-weight: 700;
}

.kol-final-point:before {
  content: "✓";
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  font-size: 8px;
  font-weight: 900;
}

.kol-final-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.kol-final-actions .btn {
  min-height: 46px;
  white-space: nowrap;
  border-radius: 13px;
  transition: .22s ease;
}

.kol-final-actions .btn:first-child {
  background: #fff;
  color: var(--purple-dark);
  box-shadow: 0 12px 25px rgba(21, 13, 78, .16);
}

.kol-final-actions .btn:first-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(21, 13, 78, .23);
}

.kol-final-actions .btn:last-child {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}

.kol-final-actions .btn:last-child:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

.kol-final-panel {
  padding: 22px;
  border-radius: 23px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.kol-final-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.kol-final-panel-head strong {
  font-size: 14px;
  letter-spacing: -.01em;
}

.kol-final-panel-head span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(29, 190, 122, .15);
  color: #c9ffe5;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.kol-final-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.kol-final-stat {
  padding: 15px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
}

.kol-final-stat strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  letter-spacing: -.035em;
}

.kol-final-stat span {
  color: #d9d4ff;
  font-size: 9.5px;
}

.kol-final-panel-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
  color: #ece9ff;
  font-size: 10.5px;
  line-height: 1.55;
}

.kol-final-panel-note:before {
  content: "↗";
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--purple-dark);
  font-weight: 900;
}

@keyframes kolFinalShine {
  0%, 62% { left: -20%; }
  78%, 100% { left: 118%; }
}

/* ── SINGLE PAGE (UNCHANGED) ────────────────────────────── */
.kol-single {
  padding: 42px 0 82px;
}

.kol-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
  color: #7b8494;
  font-size: 11px;
}

.kol-breadcrumb a:hover { color: var(--purple); }

.kol-single-hero {
  display: grid;
  grid-template-columns: minmax(240px, .58fr) minmax(0, 1.42fr);
  align-items: start;
  gap: 52px;
}

.kol-single-cover {
  position: sticky;
  top: 122px;
  min-width: 0;
}

.kol-single-cover .kol-card-cover {
  width: min(100%, 360px);
  margin: 0 auto;
  box-shadow: 0 24px 52px rgba(16, 24, 40, .18);
}

.kol-single-content { min-width: 0; }

.kol-single-content h1 {
  margin: 13px 0 17px;
  font-size: clamp(37px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.kol-single-taxonomies {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.kol-single-excerpt {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
}

.kol-single-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.kol-single-fact {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fafaff;
}

.kol-single-fact span,
.kol-single-fact strong { display: block; }

.kol-single-fact span {
  color: #7b8494;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.kol-single-fact strong { margin-top: 3px; font-size: 15px; }

.kol-single-progress {
  margin-bottom: 24px;
  padding: 17px;
  border: 1px solid #e5e0ff;
  border-radius: 14px;
  background: #f8f7ff;
}

.kol-single-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 9px;
  color: #475467;
  font-size: 11px;
  font-weight: 800;
}

.kol-single-progress .kol-progress { height: 7px; margin: 0; background: #dedaf0; }

.kol-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kol-single-description {
  margin-top: 68px;
  padding-top: 55px;
  border-top: 1px solid var(--line);
}

.kol-single-description h2,
.kol-related h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.035em;
}

.kol-entry-content { max-width: 820px; color: #344054; }
.kol-entry-content > :first-child { margin-top: 0; }
.kol-entry-content > :last-child { margin-bottom: 0; }

.kol-related {
  padding: 76px 0;
  background: var(--bg);
}

/* ── REVEAL ──────────────────────────────────────────────── */
.js .kol-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.js .kol-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── FOCUS ────────────────────────────────────────────────── */
.kol-page a:focus-visible,
.kol-page button:focus-visible,
.kol-page summary:focus-visible,
.kol-single-page a:focus-visible {
  outline: 3px solid rgba(90, 49, 244, .34);
  outline-offset: 3px;
}

/* ── SHARE TOAST ─────────────────────────────────────────── */
.share-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 9999;
  transform: translate(-50%, 18px);
  padding: 10px 15px;
  border-radius: 10px;
  background: #101828;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
  box-shadow: 0 12px 30px rgba(16, 24, 40, .22);
}

.share-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .kol-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  .kol-hero-grid,
  .kol-faq,
  .kol-single-hero {
    grid-template-columns: 1fr;
  }

  .kol-hero-copy {
    max-width: 760px;
  }

  .kol-visual {
    min-height: 520px;
    margin: auto;
  }

  .kol-hero-model {
    height: 540px;
  }

  .kol-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kol-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kol-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kol-process:before {
    display: none;
  }

  .kol-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .kol-toolbar > div:first-child,
  .kol-filter-wrap {
    flex: 0 1 auto;
  }

  .kol-filter-wrap {
    width: 100%;
    justify-content: flex-start;
  }

  .kol-single-cover {
    position: static;
  }

  .kol-collab-cta-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 42px 40px 0;
  }

  .kol-collab-cta-copy {
    max-width: 700px;
  }

  .kol-collab-cta-visual {
    min-height: 520px;
  }

  .kol-collab-cta-image {
    right: 50%;
    transform: translateX(50%);
    bottom: -80px;
    width: min(760px, 100%);
    animation: none;
  }

  .kol-collab-cta-chip {
    left: 6%;
    bottom: 30px;
  }

  .kol-faq {
    gap: 28px;
  }

  .kol-final-box {
    grid-template-columns: 1fr;
    padding: 40px 34px;
  }

  .kol-final-panel {
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .kol-section {
    padding: 70px 0;
  }

  .kol-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .kol-statgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kol-stat:nth-child(2) {
    border-right: 0;
  }

  .kol-stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .kol-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kol-final-box {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .kol-process-wrap {
    padding: 22px 16px;
  }

  .kol-process {
    grid-template-columns: 1fr;
  }

  .kol-step {
    min-height: 0;
  }

  .kol-process-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .kol-hero {
    padding: 48px 0 54px;
  }

  .kol-hero h1 {
    font-size: 44px;
  }

  .kol-visual {
    min-height: 0;
    margin-top: 28px;
    align-items: center;
  }

  .kol-visual:before {
    width: 78vw;
    height: 78vw;
    right: 50%;
    top: 8%;
    transform: translateX(50%);
  }

  .kol-hero-model-wrap {
    animation: heroModelFloatPro 8s ease-in-out infinite;
  }

  .kol-hero-model {
    width: min(100%, 520px);
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 18px 22px rgba(35, 24, 93, .15));
  }

  .kol-filter-wrap,
  .kol-filter-group,
  .kol-search,
  .kol-select {
    width: 100%;
  }

  .kol-grid,
  .kol-benefits {
    grid-template-columns: 1fr;
  }

  .kol-final-actions {
    flex-direction: column;
  }

  .kol-final-actions .btn,
  .kol-single-actions .btn {
    width: 100%;
  }

  .kol-faq-list summary {
    font-size: 14px;
    padding: 18px 50px 18px 18px;
  }

  .kol-faq-list p {
    font-size: 13px;
    padding: 0 50px 18px 18px;
  }

  .kol-collab-cta {
    padding: 38px 0 22px;
  }

  .kol-collab-cta-shell {
    padding: 30px 22px 0;
    border-radius: 24px;
  }

  .kol-collab-cta h2 {
    font-size: 35px;
  }

  .kol-collab-cta-copy > p {
    font-size: 13px;
  }

  .kol-collab-cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .kol-collab-cta-feature {
    justify-content: flex-start;
    padding: 7px 9px;
    min-height: 38px;
    border-radius: 12px;
  }

  .kol-collab-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .kol-collab-cta-primary,
  .kol-collab-cta-secondary {
    width: 100%;
  }

  .kol-collab-cta-note {
    line-height: 1.5;
  }

  .kol-collab-cta-visual {
    min-height: 370px;
    margin-top: 8px;
  }

  .kol-collab-cta-image {
    right: 50%;
    bottom: -38px;
    width: 118%;
    max-width: 600px;
    transform: translateX(50%);
  }

  .kol-collab-cta-chip {
    display: none;
  }

  .kol-final {
    padding-top: 60px;
  }

  .kol-final-box {
    padding: 30px 23px;
    border-radius: 25px;
    gap: 28px;
  }

  .kol-final h2 {
    font-size: 32px;
  }

  .kol-final p {
    font-size: 13px;
  }

  .kol-final-actions {
    display: grid;
  }

  .kol-final-actions .btn {
    width: 100%;
  }

  .kol-single {
    padding-top: 30px;
  }

  .kol-single-facts {
    grid-template-columns: 1fr;
  }

  .kol-dashboard-status {
    grid-column: 2;
  }
}

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

@media (max-width: 480px) {
  .kol-hero h1 {
    font-size: clamp(38px, 12vw, 46px);
  }

  .kol-lead {
    font-size: 15px;
  }

  .kol-actions .btn {
    width: 100%;
  }

  .kol-visual {
    min-height: 370px;
  }

  .kol-statgrid {
    grid-template-columns: 1fr;
  }

  .kol-stat,
  .kol-stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .kol-stat:last-child {
    border-bottom: 0;
  }

  .kol-section {
    padding: 58px 0;
  }

  .kol-final-box {
    padding: 29px 22px;
    border-radius: 22px;
  }

  .kol-single-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 430px) {
  .kol-collab-cta h2 {
    font-size: 31px;
  }

  .kol-collab-cta-features {
    grid-template-columns: 1fr;
  }

  .kol-collab-cta-visual {
    min-height: 315px;
  }

  .kol-collab-cta-image {
    width: 125%;
    bottom: -28px;
  }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .kol-page *,
  .kol-page *:before,
  .kol-page *:after,
  .kol-single-page *,
  .kol-single-page *:before,
  .kol-single-page *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .js .kol-reveal {
    opacity: 1;
    transform: none;
  }

  .kol-hero-model-wrap,
  .kol-hero-model-wrap:after,
  .kol-hero-model {
    animation: none;
  }

  .kol-hero-model {
    opacity: 1;
    clip-path: none;
  }

  .kol-visual:hover .kol-hero-model {
    transform: none;
    filter: drop-shadow(0 26px 28px rgba(35, 24, 93, .18));
  }

  .kol-collab-cta-image {
    animation: none;
  }

  .kol-final-box:after,
  #paket-kolaborasi .kol-card.kol-reveal.is-visible,
  #paket-kolaborasi .kol-card:hover:after {
    animation: none;
  }

  #paket-kolaborasi .kol-card.kol-reveal {
    opacity: 1;
    transform: none;
  }

  #paket-kolaborasi .kol-card:hover {
    transform: none;
  }

  #paket-kolaborasi .kol-card:hover .kol-card-cover {
    transform: none;
  }
}
