/* ============================================================
   SIMPEG — PT EASYSTEM SMART TECH
   Tambahan & override untuk halaman SIMPEG
   (dimuat setelah style.css)
   ============================================================ */

/* ---------- Hero: mockup browser ---------- */
.hero .hero-shot { position: relative; z-index: 3; width: min(580px, 100%); }
.hero .hero-shot img { width: 100%; height: auto; }
.hero .chip.c1 { top: 6%; left: -4%; }
.hero .chip.c2 { top: 44%; right: -5%; }
.hero .chip.c3 { bottom: 4%; left: 1%; }
@media (max-width: 980px) {
  .hero .chip.c1 { left: 0; }
  .hero .chip.c2 { right: 0; }
}

/* ---------- Anti-blowout mobile: grid item tidak memaksa lebar ---------- */
.hero-copy, .hero-visual, .split-text, .split-visual, .impl-card { min-width: 0; }
.browser-frame { min-width: 0; }
.browser-frame img { width: 100%; height: auto; }

/* ---------- Split 2 kolom (integrasi) ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.check-list { list-style: none; padding: 0; margin: 4px 0 20px; }
.check-list li { position: relative; padding-left: 32px; margin-bottom: 11px; color: var(--muted); }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 2px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--green-soft); color: #047857;
  font-size: .74rem; font-weight: 800;
  display: grid; place-items: center;
}

/* ---------- Galeri: atur kolom per tab ---------- */
#tab-portal .web-shots { grid-template-columns: 1fr 1fr; }
#tab-modul .web-shots { grid-template-columns: repeat(3, 1fr); }
#tab-modul .web-shots .shot .cap { font-size: .84rem; }
@media (max-width: 980px) {
  #tab-modul .web-shots { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  #tab-portal .web-shots, #tab-modul .web-shots { grid-template-columns: 1fr; }
}

/* ---------- Video grid (3 video) ---------- */
.video-wrap { max-width: 1120px; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 26px; }
@media (max-width: 940px) { .video-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }
.video-grid .video-facade { aspect-ratio: 16/9; }
.video-grid .play svg { width: 58px; height: 58px; }
.video-grid .vf-label { font-size: .86rem; }
.video-facade.playing .play, .video-facade.playing .vf-label { display: none; }

/* ---------- Implementasi: kartu daerah ---------- */
.impl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
@media (max-width: 900px) { .impl-grid { grid-template-columns: 1fr; } }
.impl-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.impl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.impl-card h3 { margin-top: 20px; font-size: 1.35rem; }
.impl-card > p { color: var(--muted); margin-bottom: 14px; }
.impl-list { list-style: none; padding: 0; margin: 0 0 18px; }
.impl-list li { position: relative; padding-left: 26px; margin-bottom: 9px; color: var(--muted); font-size: .95rem; }
.impl-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 800;
}
.impl-links { display: flex; gap: 10px; flex-wrap: wrap; }
.impl-strip {
  margin-top: 36px; padding: 20px 22px;
  background: var(--bg); border: 1px dashed var(--line); border-radius: var(--radius);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center;
  text-align: center;
}
.impl-strip .st-label { font-weight: 800; color: var(--navy-800); margin-right: 6px; }
.impl-strip .st-item {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: .86rem; font-weight: 600; color: var(--navy-700);
}

/* ---------- Utilitas kecil ---------- */
.section .grad { -webkit-text-fill-color: transparent; }
