/* ---------------------------------------------
   DiPStrategy -- KOL Management Page
   style/kol.css
   --------------------------------------------- */

/* --- HERO --- */
.kol-top-section {
  position: relative;
  width: 100%;
  background-color: var(--navy);
  overflow: hidden;
  padding-bottom: 0px;
}

.kol-top-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.5; z-index: 0;
  pointer-events: none;
}

.kol-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 20%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0) 70%
  );
  z-index: 1; pointer-events: none;
}

/* -- Hero image: bottom left -- */
.kol-hero-img {
  position: absolute;
  bottom: 0; left: 0;
  width: 30%; height: auto;
  z-index: 5;
  pointer-events: none;
  object-fit: contain;
  object-position: bottom left;
}

.kol-hero-content {
  position: relative; z-index: 10;
  padding: 180px 56px 60px;
  padding-left: calc(30% + 56px);
}

.kol-accent-line {
  width: 160px; height: 4px;
  background: var(--lime);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.6s 0.2s forwards;
}

.kol-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.6s 0.3s forwards;
}

.kol-label-star {
  width: 14px; height: 14px;
  animation: spin 12s linear infinite; flex-shrink: 0;
}

.kol-headline {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.0;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s 0.4s forwards;
}

.kol-headline .hl-light {
  display: block; font-weight: 200;
  font-size: clamp(28px, 3.5vw, 60px);
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}

.kol-headline .hl-bold {
  display: block; font-weight: 900;
  font-size: clamp(32px, 4.5vw, 72px);
  letter-spacing: -0.04em;
  color: #fff;
  text-transform: uppercase;
}

.kol-subtext {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 560px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
}

.kol-cta-group {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 56px;
  opacity: 0; animation: fadeUp 0.7s 0.6s forwards;
}

.kol-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #093564; background: #DEFF2D;
  border: none; border-radius: 999px;
  padding: 14px 28px; text-decoration: none;
  cursor: pointer; transition: background 0.25s, transform 0.2s;
}

.kol-cta-primary:hover { background: #f0ff50; transform: translateY(-2px); }

.kol-cta-secondary {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 13px;
  color: rgba(255,255,255,0.55); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}

.kol-cta-secondary:hover { color: #DEFF2D; }

.kol-anchor-strip {
  position: relative; z-index: 10;
  display: flex; align-items: center;
  padding: 0 56px;
  padding-left: calc(30% + 56px);
  opacity: 0; animation: fadeUp 0.7s 0.7s forwards;
}

.kol-anchor-item {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); text-decoration: none;
  padding: 16px 24px 16px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  margin-right: 24px;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}

.kol-anchor-item:last-child { border-right: none; margin-right: 0; }
.kol-anchor-item:hover { color: #DEFF2D; }
.kol-anchor-item svg { width: 12px; height: 12px; }

/* --- SHARED --- */
.kol-section-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #093564;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}

.kol-section-star {
  width: 14px; height: 14px;
  animation: spin 12s linear infinite; flex-shrink: 0;
}

/* --- UNTUK SIAPA --- */
.kol-us-section {
  position: relative;
  background-color: #E8357A;
  padding: 96px 56px; overflow: hidden;
}

.kol-us-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.15; z-index: 0; pointer-events: none;
}

.kol-us-inner { position: relative; z-index: 1; }

.kol-section-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200; font-size: clamp(26px, 2.8vw, 38px);
  color: #093564; letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 16px;
}

.kol-section-headline strong { font-weight: 900; }

.kol-opening {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; 
  font-size: clamp(14px, 1.3vw, 18px); 
  line-height: 1.35;
  color: rgba(9,53,100,0.85);
  max-width: 640px; margin-bottom: 48px;
}

/* Override khusus untuk section Untuk Siapa (background pink -> teks putih) */
.kol-us-section .kol-section-label { color: rgba(255,255,255,0.9); }
.kol-us-section .kol-section-star { stroke: #093564 !important; }
.kol-us-section .kol-section-star g { stroke: #093564; }
.kol-us-section .kol-section-headline { color: #fff; }
.kol-us-section .kol-opening { color: rgba(255,255,255,0.85); }

/* 3 cards, 1 baris 3 kolom -- accordion vertikal */
.kol-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}

.kol-us-card {
  background: var(--card-color, #fff);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.kol-us-card.active {
  box-shadow: 0 4px 24px rgba(9,53,100,0.12);
}

.kol-us-card-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.kol-us-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--card-text, #093564);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0;
}

.kol-us-card-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--card-text, #093564);
  position: relative;
  margin-top: 2px;
}

.kol-us-card-icon svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  transition: opacity 0.25s;
}

.kol-us-card-icon .icon-minus { opacity: 0; }
.kol-us-card-icon .icon-plus  { opacity: 1; }

.kol-us-card.active .kol-us-card-icon .icon-minus { opacity: 1; }
.kol-us-card.active .kol-us-card-icon .icon-plus  { opacity: 0; }

.kol-us-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.kol-us-card-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: var(--card-text, #093564);
  opacity: 0.85;
  padding: 0 24px 28px;
  margin: 0;
}

/* --- TIER KOL: 30/70 cream, diff card style --- */
.kol-tier-section {
  position: relative;
  background-color: #f0f0e6;
  padding: 50px 56px 96px; overflow: visible;
}

.kol-tier-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.2; z-index: 0; pointer-events: none;
}

.kol-tier-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 64px; align-items: start;
}

.kol-tier-left { position: sticky; top: 100px; }

.kol-tier-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200; font-size: clamp(26px, 2.5vw, 36px);
  color: #093564; letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 16px;
}

.kol-tier-headline strong { font-weight: 900; }

.kol-tier-subtext {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; 
  font-size: clamp(14px, 1.3vw, 18px); 
  line-height: 1.35;
  color: rgba(9,53,100,0.65); margin-bottom: 16px;
}

.kol-tier-note {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; 
  font-size: clamp(14px, 1.3vw, 18px); 
  color: rgba(9,53,100,0.45);
  font-style: italic; line-height: 1.35;
}

.kol-tier-grid {
  display: flex; flex-direction: column; gap: 16px;
}

.kol-tier-card {
  background: #fff;
  border: 1px solid rgba(9,53,100,0.08);
  border-radius: 12px; padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.kol-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(9,53,100,0.1);
}

.kol-tier-card-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 12px;
}

.kol-tier-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 18px;
  color: #093564;
}

.kol-tier-range {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #DEFF2D; background: #093564;
  padding: 3px 10px; border-radius: 999px;
}

.kol-tier-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 13px; line-height: 1.7;
  color: rgba(9,53,100,0.6); margin-bottom: 12px;
}

.kol-tier-fit-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #093564; margin-bottom: 4px; display: block;
}

.kol-tier-fit {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 12.5px; line-height: 1.6;
  color: rgba(9,53,100,0.5);
}

/* --- PROSES KERJA: full-width slider (SEO style) --- */
.kol-pk-section {
  position: relative;
  background: #04172e;
  padding: 96px 0; overflow: visible;
}

/* Section image: kiri, nyebrang ke section atas */
.kol-pk-img {
  position: absolute;
  left: 0;
  top: -120px;
  width: 28%;
  height: auto;
  z-index: 10;
  pointer-events: none;
  object-fit: contain;
  object-position: bottom left;
}

.kol-pk-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.06; z-index: 0; pointer-events: none;
}

.kol-pk-header {
  position: relative; z-index: 1;
  padding: 0 56px 56px;
  padding-left: calc(30% + 56px);
  display: flex; justify-content: space-between; align-items: flex-end;
}

.kol-pk-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #DEFF2D;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}

.kol-pk-star {
  width: 14px; height: 14px;
  animation: spin 12s linear infinite;
}

.kol-pk-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(26px, 2.5vw, 36px);
  color: #fff; letter-spacing: -0.02em; max-width: 480px;
}

.kol-pk-subtext {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 380px; margin-top: 12px;
}

/* Nav arrows */
.kol-pk-nav {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}

.kol-pk-arrow {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,0.5);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.kol-pk-arrow:hover { background: rgba(222,255,45,0.15); border-color: #DEFF2D; color: #DEFF2D; }
.kol-pk-arrow:disabled { opacity: 0.25; cursor: default; }
.kol-pk-arrow svg { width: 18px; height: 18px; }

.kol-pk-dots {
  display: flex; gap: 6px; align-items: center; margin: 0 4px;
}

.kol-pk-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, width 0.3s;
}

.kol-pk-dot.active { background: #DEFF2D; width: 20px; border-radius: 3px; }

.kol-pk-slider-wrap { overflow: hidden; position: relative; z-index: 1; }

.kol-pk-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.kol-pk-card {
  flex: 0 0 100%;
  padding: 0 56px;
  padding-left: calc(30% + 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}

.kol-pk-card-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 10px;
  letter-spacing: 0.2em; color: #DEFF2D;
  background: rgba(222,255,45,0.12);
  border: 1px solid rgba(222,255,45,0.25);
  display: inline-block; padding: 3px 10px;
  border-radius: 999px; margin-bottom: 16px;
}

.kol-pk-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(24px, 3vw, 42px);
  color: #fff; letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 16px;
}

.kol-pk-card-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

.kol-pk-items {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
}

.kol-pk-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 13.5px; line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

.kol-pk-item:last-child { border-bottom: none; }

.kol-pk-item::before {
  content: '';
  width: 6px; height: 6px;
  background: #DEFF2D; border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}

/* --- REKAM JEJAK (slim) --- */
.kol-rj-section {
  position: relative;
  background: #093564;
  padding: 72px 56px; overflow: hidden;
}

.kol-rj-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.06; z-index: 0; pointer-events: none;
}

.kol-rj-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 64px; align-items: start;
}

.kol-rj-left { position: sticky; top: 100px; }

.kol-rj-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #DEFF2D;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}

.kol-rj-star { width: 14px; height: 14px; animation: spin 12s linear infinite; }

.kol-rj-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(18px, 2vw, 28px);
  color: #fff; letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 16px;
}

.kol-rj-opening {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 13px; line-height: 1.75;
  color: rgba(255,255,255,0.45);
}

.kol-rj-diff-grid {
  display: flex; flex-direction: column; gap: 16px;
}

.kol-rj-diff-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 24px 28px;
  transition: background 0.25s, border-color 0.25s;
}

.kol-rj-diff-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}

.kol-rj-diff-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px;
  color: #DEFF2D; margin-bottom: 8px; line-height: 1.35;
}

.kol-rj-diff-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 12.5px; line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* --- CTA --- */
.kol-cta-section {
  background: #080808;
  padding: 80px 56px;
  position: relative; overflow: hidden; text-align: center;
}

.kol-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.04; pointer-events: none;
}

.kol-cta-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}

.kol-cta-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #DEFF2D;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}

.kol-cta-star { width: 14px; height: 14px; animation: spin 12s linear infinite; }

.kol-cta-headline { font-family: 'Montserrat', sans-serif; margin-bottom: 12px; }
.kol-cta-headline .hl-light {
  display: block; font-weight: 200;
  font-size: clamp(24px, 2.8vw, 40px);
  color: #fff; letter-spacing: -0.02em;
}
.kol-cta-headline .hl-bold {
  display: block; font-weight: 900;
  font-size: clamp(26px, 2.8vw, 40px);
  color: #DEFF2D; letter-spacing: -0.03em;
}

.kol-cta-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; 
  font-size: clamp(14px 1.3vw 18px);
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px; line-height: 1.35;
}

.kol-cta-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.kol-cta-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kol-cta-field { display: flex; flex-direction: column; gap: 6px; }

.kol-cta-field-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.kol-cta-input,
.kol-cta-select,
.kol-cta-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 12px 16px;
  color: rgba(255,255,255,0.88);
  font-family: 'Barlow', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s; width: 100%;
}

.kol-cta-input::placeholder,
.kol-cta-textarea::placeholder { color: rgba(255,255,255,0.22); }
.kol-cta-input:focus,
.kol-cta-select:focus,
.kol-cta-textarea:focus { border-color: rgba(222,255,45,0.4); }

.kol-cta-select {
  cursor: pointer; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}

.kol-cta-select option { background: #05213F; color: #fff; }
.kol-cta-textarea { resize: none; height: 90px; line-height: 1.6; }

.kol-checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }

.kol-checkbox-btn {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 12px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; color: rgba(255,255,255,0.55);
  cursor: pointer; transition: all 0.2s; user-select: none;
}

.kol-checkbox-btn.selected {
  background: rgba(222,255,45,0.15);
  border-color: #DEFF2D; color: #DEFF2D;
}

.kol-cta-submit {
  background: #DEFF2D; border: none; border-radius: 8px;
  padding: 15px 28px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #080808; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%; margin-top: 4px;
}

.kol-cta-submit:hover { background: #f0ff50; transform: translateY(-1px); }

.kol-cta-microcopy {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center; margin-top: 8px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .kol-us-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .kol-hero-img      { display: none; }
  .kol-pk-img        { display: none; }
  .kol-hero-content  { padding: 140px 24px 40px; }
  .kol-anchor-strip  { padding: 0 24px; flex-direction: column; gap: 0; }
  .kol-anchor-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 12px 0; margin-right: 0; }
  .kol-us-section    { padding: 64px 24px; }
  .kol-us-grid       { grid-template-columns: 1fr; }
  .kol-tier-section  { padding: 0 24px 64px; }
  .kol-tier-inner    { grid-template-columns: 1fr; gap: 40px; }
  .kol-tier-left     { position: static; }
  .kol-pk-section    { padding: 64px 0; }
  .kol-pk-header     { padding: 0 24px 40px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .kol-pk-card       { padding: 0 24px; grid-template-columns: 1fr; gap: 32px; }
  .kol-rj-section    { padding: 56px 24px; }
  .kol-rj-inner      { grid-template-columns: 1fr; gap: 40px; }
  .kol-rj-left       { position: static; }
  .kol-cta-section   { padding: 64px 24px; }
  .kol-cta-row       { grid-template-columns: 1fr; }
}

/* --- INDUSTRY INSIGHT (slim lime, sama format dengan E-Commerce) --- */
.kol-ii-section {
  background: #DEFF2D;
  padding: 56px 56px;
  overflow: hidden;
}

.kol-ii-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.kol-ii-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(9,53,100,0.85);
}

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

.kol-ii-card {
  padding: 0 40px 0 0;
}

.kol-ii-card.has-border {
  border-right: 1px solid rgba(9,53,100,0.15);
  margin-right: 40px;
}

.kol-ii-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 64px);
  color: #093564;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.kol-ii-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; 
  font-size: clamp(12px, 1.1vw 16px);
  color: #093564;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: block; margin-bottom: 12px;
  line-height: 1.4;
}

.kol-ii-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; 
  font-size: clamp(14px, 1.2vw, 17px); 
  line-height: 1.35;
  color: rgba(9,53,100,0.6);
}

@media (max-width: 900px) {
  .kol-ii-section { padding: 48px 24px; }
  .kol-ii-grid    { grid-template-columns: 1fr; gap: 32px; }
  .kol-ii-card    { padding: 0; }
  .kol-ii-card.has-border { border-right: none; margin-right: 0; border-bottom: 1px solid rgba(9,53,100,0.15); padding-bottom: 32px; }
}
