.section-plat-slider {
  background: var(--blue);
  overflow: hidden;
  padding-bottom: 40px;
}

.plat-slider-head {
  border-bottom: 1px solid rgba(240,230,210,0.1);
}

.plat-slider-head .sec-head--split {
  padding-top: 40px;
  padding-bottom: 24px;
  margin-bottom: 0;
}

.section-plat-slider .sec-kicker { color: var(--accent3-light); }
.section-plat-slider .sec-title  { color: var(--ivory); }
.section-plat-slider .sec-desc   { color: rgba(240,230,210,0.5); margin-top: 6px; }
.section-plat-slider .sec-all    { color: var(--yellow); }
.section-plat-slider .sec-all:hover { border-bottom-color: var(--yellow); }


.plat-track-wrap {
  position: relative;
  padding: 24px 0;
  overflow: hidden;
}

.plat-track-wrap::before,
.plat-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.plat-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--blue) 0%, transparent 100%);
}

.plat-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--blue) 0%, transparent 100%);
}


.plat-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: platScroll 32s linear infinite;
}

.plat-track-wrap:hover .plat-track { animation-play-state: paused; }

@keyframes platScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


.plat-slide-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(240,230,210,0.07);
  border: 1px solid rgba(240,230,210,0.1);
  border-radius: var(--r-md);
  text-decoration: none;
  white-space: nowrap;
  min-width: 200px;
  transition: background 0.3s ease,
              border-color 0.3s ease,
              transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.plat-slide-card:hover {
  background: rgba(240,230,210,0.13);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.plat-slide-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(240,230,210,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(240,230,210,0.75);
  transition: background 0.25s, color 0.25s;
}

.plat-slide-card:hover .plat-slide-icon {
  background: var(--yellow);
  color: var(--blue);
}


.plat-slide-icon--img {
  width: auto;
  min-width: 40px;
  max-width: 84px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--ivory);
  padding: 6px 8px;
}

.plat-slide-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plat-slide-card:hover .plat-slide-icon--img {
  background: var(--ivory);
}

.plat-slide-body { display: flex; flex-direction: column; gap: 2px; }

.plat-slide-name {
  font-size: 17px;
  font-weight: 700;
  color: rgba(240,230,210,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}

.plat-slide-desc {
  font-size: 17px;
  color: rgba(240,230,210,0.4);
}


.sec-desc {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
  margin-top: 12px;
}


.section-banner { position: relative; }


.banner-canvas {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.65;
}

.banner-slider {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: var(--blue);
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  display: block;
  text-decoration: none;
  color: inherit;
}

.banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}


.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.banner-slide.active .banner-bg { transform: scale(1.04); }


.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  height: 100%;
  gap: 24px;
  padding: 0 64px;
}

.banner-info {
  position: relative;
  z-index: 2;
  display: block;
  text-decoration: none;
  color: inherit;
}

.banner-info--link { cursor: pointer; }

.banner-photo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 28px 0;
}


.banner-photo-trigger {
  display: block;
  max-width: 100%;
  max-height: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: zoom-in;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.banner-slide.active .banner-photo-trigger {
  opacity: 1;
  transform: scale(1);
}

.banner-photo-img {
  display: block;
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-md);
  filter: drop-shadow(0 26px 54px rgba(3,70,148,0.38));
}

.banner-label {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: var(--yellow);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  margin-bottom: 12px;
}

.banner-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 560px;
  margin-bottom: 10px;
}

.banner-sub {
  font-size: 17px;
  color: rgba(240,230,210,0.75);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 20px;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  background: var(--yellow);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,222,0,0.3);
}

.banner-controls {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.banner-prev,
.banner-next {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(3,70,148,0.2);
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.banner-prev:hover,
.banner-next:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--ivory);
}

.banner-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(240,230,210,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}

.banner-dot.active {
  background: var(--yellow);
  transform: scale(1.4);
}


.banner-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(13,27,42,0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.banner-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.banner-lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.banner-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(240,230,210,0.12);
  color: var(--ivory);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.banner-lightbox-close:hover { background: rgba(240,230,210,0.24); }


.section-video {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}


.video-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-video .section-inner {
  position: relative;
  z-index: 1;
}


.video-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.video-card { display: flex; flex-direction: column; }

.video-embed-wrap {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--dark);
  cursor: pointer;
  box-shadow: 0 20px 48px rgba(26,42,58,0.16);
  transition: box-shadow 0.4s ease;
}

.video-embed-wrap:hover { box-shadow: 0 28px 60px rgba(26,42,58,0.22); }

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.video-thumb-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, #0a4fa0 100%);
}

.video-embed-wrap:hover .video-thumb {
  transform: scale(1.04);
  opacity: 1;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--yellow);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-embed-wrap:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 14px 0 6px;
}

.video-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
}


.video-archive-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream3);
}

.video-archive-count {
  font-size: 16px;
  color: var(--mid);
  margin: 0;
}


.video-search-form {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--text);
  padding: 0 0 10px;
  max-width: 400px;
  width: 100%;
  transition: border-color 0.25s ease;
}

.video-search-form:focus-within { border-color: var(--blue); }

.video-search-form svg { color: var(--mid); flex-shrink: 0; }

.video-search-form input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: transparent;
}

.video-search-form button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.video-search-form button:hover { color: var(--accent3); }

.video-search-result-info {
  font-size: 15px;
  color: var(--mid);
  margin: -20px 0 30px;
}

.video-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 28px;
}

.video-archive-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.video-archive-card .video-embed-wrap {
  box-shadow: 0 16px 36px rgba(26,42,58,0.12);
  transition: box-shadow 0.4s ease;
}

.video-archive-card:hover .video-embed-wrap {
  box-shadow: 0 24px 48px rgba(26,42,58,0.2);
}

.video-archive-card:hover .video-thumb {
  transform: scale(1.05);
}

.video-archive-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent3);
  margin: 16px 0 4px;
}

.video-archive-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 8px;
}

.video-archive-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}


.video-external-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13,27,42,0.75);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  z-index: 1;
}

.video-empty-msg {
  font-size: 15px;
  color: var(--mid);
  padding: 60px 0;
  text-align: center;
}


.video-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.video-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--cream2);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.video-pagination .page-numbers:hover { background: var(--cream3); }

.video-pagination .page-numbers.current {
  background: var(--blue);
  color: var(--ivory);
}

.video-pagination .page-numbers.dots { background: none; }

@media (max-width: 900px) {
  .video-archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .video-archive-grid { grid-template-columns: 1fr; }
  .video-archive-head { flex-direction: column; align-items: stretch; }
}


.section-layanan-mandiri {
  padding: 80px 0;
  background: var(--cream2);
}


.section-layanan-mandiri .sec-title em { color: var(--blue); font-style: italic; }

.lm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lm-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: rgba(3,70,148,0.06);
  border: 1px solid rgba(3,70,148,0.1);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: background 0.3s ease,
              border-color 0.3s ease,
              transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.lm-card:hover {
  background: rgba(3,70,148,0.1);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.lm-icon {
  width: 48px;
  height: 48px;
  background: rgba(3,70,148,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: background 0.25s, color 0.25s;
}

.lm-card:hover .lm-icon {
  background: var(--blue);
  color: var(--cream);
}

.lm-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.lm-desc {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
}

.lm-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 4px;
  transition: gap 0.2s;
}

.lm-card:hover .lm-cta { gap: 10px; }


.section-faq {
  padding: 80px 0;
  background: var(--blue);
}

.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.faq-cats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 80px;
}


.section-faq .sec-kicker        { color: var(--accent3-light); }
.section-faq .sec-title         { color: var(--ivory); }

.faq-cat-btn {
  text-align: left;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(240,230,210,0.5);
  background: transparent;
  border: none;
  border-left: 2px solid rgba(240,230,210,0.15);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, padding-left 0.2s;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
  color: var(--yellow);
  border-color: var(--yellow);
  padding-left: 18px;
}

.faq-panel { display: none; }
.faq-panel.active { display: block; }

.faq-item {
  border-bottom: 1px solid rgba(240,230,210,0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  color: rgba(240,230,210,0.85);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--ivory); }

.faq-q[aria-expanded="true"] { color: var(--yellow); }

.faq-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(240,230,210,0.4);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--yellow);
}

.faq-a {
  padding-bottom: 16px;
}

.faq-a p {
  font-size: 16px;
  color: rgba(240,230,210,0.55);
  line-height: 1.75;
  margin: 0 0 14px;
}

.faq-a p:last-child { margin-bottom: 0; }


.section-sosmed {
  padding: 80px 0;
  background: var(--cream2);
  position: relative;
  overflow: hidden;
}


.sosmed-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-sosmed .section-inner {
  position: relative;
  z-index: 1;
}

.sosmed-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

.sosmed-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sosmed-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--cream3);
  border-radius: var(--r-lg);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.25s;
}


.sosmed-channel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(3,70,148,0.1), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.sosmed-channel:hover::before { opacity: 1; }

.sosmed-channel:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(26,42,58,0.08);
  border-color: var(--blue);
}

.sosmed-ch-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sosmed-ch-icon--ig { background: #f0e4f7; color: #c13584; }
.sosmed-ch-icon--x   { background: #e5e5e5; color: #000; }
.sosmed-ch-icon--fb { background: #e7eef8; color: #1877f2; }

.sosmed-ch-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.sosmed-ch-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.sosmed-ch-platform {
  font-size: 17px;
  color: var(--mid);
}

.sosmed-ch-follow {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  transition: background 0.2s, color 0.2s;
}

.sosmed-channel:hover .sosmed-ch-follow {
  background: var(--blue);
  color: var(--ivory);
}

.sosmed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.sosmed-post {
  aspect-ratio: 1;
  background: var(--cream3);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.25s, box-shadow 0.35s ease;
}

.sosmed-post:hover {
  box-shadow: 0 0 0 3px rgba(26,42,58,0.15), 0 14px 32px rgba(26,42,58,0.28);
  z-index: 2;
}

.sosmed-post-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream3);
}

.sosmed-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sosmed-post:hover .sosmed-post-img { transform: scale(1.05); }

.sosmed-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,70,148,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  opacity: 0;
  transition: opacity 0.25s;
}

.sosmed-post:hover .sosmed-post-overlay { opacity: 1; }


.sosmed-post-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 1;
}

.sosmed-post-badge--instagram { color: #c13584; }
.sosmed-post-badge--facebook  { color: #1877f2; }
.sosmed-post-badge--x         { color: #000; }


@media (max-width: 960px) {
  .plat-grid              { grid-template-columns: repeat(2, 1fr); }
  .video-layout           { grid-template-columns: 1fr; }
  .lm-grid                { grid-template-columns: repeat(2, 1fr); }
  .faq-layout             { grid-template-columns: 1fr; }
  .faq-cats               { flex-direction: row; flex-wrap: wrap; position: static; }
  .sosmed-layout          { grid-template-columns: 1fr; }
  .banner-slider          { height: 560px; }
  .banner-grid            { grid-template-columns: 1fr; padding: 28px 28px 0; gap: 8px; }
  .banner-photo-wrap      { order: -1; padding: 0 0 20px; }
  .banner-photo-img       { max-height: 260px; }
  
  .sec-title    { font-size: 32px; }
  .hero-h1      { font-size: 52px; }
  .banner-title { font-size: 32px; }
  .stat-n       { font-size: 48px; }
  .about-h2     { font-size: 32px; }
}

@media (max-width: 640px) {
  .plat-grid              { grid-template-columns: 1fr; }
  .lm-grid                { grid-template-columns: 1fr; }
  .banner-slider          { height: 500px; }
  .banner-grid            { padding: 20px 20px 0; }
  .banner-photo-img       { max-height: 200px; }
  .banner-controls        { right: 16px; }
  .sosmed-grid            { grid-template-columns: repeat(3, 1fr); }
  .section-platforms,
  .section-video,
  .section-layanan-mandiri,
  .section-faq,
  .section-sosmed         { padding: 56px 0; }
  
  body          { font-size: 15px; }
  .sec-title    { font-size: 26px; }
  .hero-h1      { font-size: 38px; }
  .hero-sub     { font-size: 16px; }
  .stat-n       { font-size: 40px; }
  .about-h2     { font-size: 26px; }
  .banner-title { font-size: 26px; }
  .video-title  { font-size: 19px; }
  .faq-q        { font-size: 15px; }
  .news-title   { font-size: 18px; }
}





body { font-size: 16px; line-height: 1.65; }


.topbar-link { font-size: 12px; }


.nav-menu > li > a  { font-size: 14px; }
.nav-menu .sub-menu a { font-size: 13px; }
.nav-search-input   { font-size: 15px; }


.sec-kicker { font-size: 11px; }
.sec-title  { font-size: 40px; }
.sec-desc   { font-size: 16px; }
.sec-all    { font-size: 12px; }


.hero-tag-text     { font-size: 11px; }
.hero-h1           { font-size: 72px; }
.hero-sub          { font-size: 18px; }
.hero-search-input { font-size: 16px; }
.hero-search-btn   { font-size: 14px; }
.hero-chip-label   { font-size: 12px; }
.hero-chip         { font-size: 12px; }


.stat-n { font-size: 42px; }
.stat-l { font-size: 12px; }


.svc-name  { font-size: 19px; }
.svc-desc  { font-size: 15px; }
.svc-arrow { font-size: 14px; }


.news-cat    { font-size: 11px; }   
.news-date   { font-size: 12px; }
.news-title  { font-size: 20px; }
.news-excerpt{ font-size: 15px; }
.news-read   { font-size: 13px; }


.about-h2  { font-size: 40px; }
.about-p   { font-size: 16px; }
.about-btn { font-size: 13px; }


.plat-slide-name  { font-size: 14px; }
.plat-slide-desc  { font-size: 12px; }


.banner-label { font-size: 11px; }
.banner-title { font-size: 44px; }
.banner-sub   { font-size: 17px; }
.banner-cta   { font-size: 14px; }


.video-title        { font-size: 22px; }
.video-title--sm    { font-size: 16px; }
.video-desc         { font-size: 15px; }


.lm-title { font-size: 17px; }
.lm-desc  { font-size: 15px; }
.lm-cta   { font-size: 13px; }


.faq-cat-btn { font-size: 15px; }
.faq-q       { font-size: 18px; }
.faq-a p     { font-size: 16px; }


.sosmed-ch-name     { font-size: 15px; }
.sosmed-ch-platform { font-size: 12px; }
.sosmed-ch-follow   { font-size: 12px; }


.platform-panel-query { font-size: 16px; }
.platform-panel-sub   { font-size: 15px; }
.pc-name  { font-size: 16px; }
.pc-desc  { font-size: 14px; }
.pc-badge { font-size: 10px; }


.section-video .sec-kicker { color: var(--accent3); }


.section-layanan-mandiri .sec-kicker { color: var(--accent3); }
.section-layanan-mandiri .sec-title  { color: var(--text); }
.section-layanan-mandiri .sec-title em { color: var(--blue); }
.section-layanan-mandiri .sec-desc   { color: var(--mid); }


.section-stats .sec-kicker { color: var(--accent3); }

