.panduan-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.panduan-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.panduan-doc-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream2);
  border: 1px solid var(--cream3);
  box-shadow: 0 8px 28px rgba(13,27,42,0.1);
}

.panduan-doc-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.panduan-map-card {
  background: var(--paper);
  border: 1px solid var(--cream3);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: 0 4px 14px rgba(13,27,42,0.05);
}

.panduan-map-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 14px;
}

.panduan-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: var(--r-md);
  overflow: hidden;
}

.panduan-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.panduan-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.panduan-sidebar-group {
  background: var(--paper);
  border: 1px solid var(--cream3);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: 0 3px 12px rgba(13,27,42,0.05);
}

.panduan-sidebar-heading {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream3);
}

.panduan-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panduan-sidebar-link {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  text-decoration: none;
  padding: 7px 8px;
  border-radius: var(--r-md);
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.panduan-sidebar-link:hover {
  background: rgba(3,70,148,0.06);
  color: var(--blue);
  padding-left: 12px;
}

.panduan-sidebar-link.active {
  background: var(--blue);
  color: var(--ivory);
  font-weight: 600;
}

.panduan-doc-frame-heyzine { aspect-ratio: 3 / 4; }

.panduan-video-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panduan-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 8px 28px rgba(13,27,42,0.15);
}

.panduan-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .panduan-layout { grid-template-columns: 1fr; }
  .panduan-sidebar { position: static; }
  .panduan-doc-frame { aspect-ratio: 3 / 4; }
}


@media (max-width: 640px) {
  .onesearch-float { padding: 0 16px; margin-top: -80px; }
  .onesearch-float-inner { border-radius: 12px; clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%); }
  .onesearch-float-inner:hover { clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%); }
  .onesearch-float-inner::after { width: 20px; height: 20px; }
  .onesearch-float-inner:hover::after { width: 24px; height: 24px; }
  .onesearch-platforms { justify-content: center; text-align: center; gap: 6px; }
  .onesearch-platforms span:not(.os-dot) { font-size: 10px; }
  .onesearch-badge { font-size: 9px; padding: 3px 8px; }
}


.hero-cta-btn { position: relative; }
.hero-cta-btn::after { content: attr(data-tooltip); position: absolute; bottom: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px); background: var(--blue); color: var(--ivory); font-family: var(--font-body); font-size: 13px; font-weight: normal; letter-spacing: normal; text-transform: none; line-height: 1.4; padding: 10px 14px; border-radius: 8px; width: max-content; white-space: nowrap; text-align: center; box-shadow: 0 4px 14px rgba(0,0,0,0.25); border: 1px solid rgba(240,230,210,0.15); opacity: 0; visibility: hidden; pointer-events: none; z-index: 100; transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1), visibility 0.3s; }
.hero-cta-btn::before { content: ''; position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(10px); border-width: 6px 6px 0 6px; border-style: solid; border-color: var(--blue) transparent transparent transparent; opacity: 0; visibility: hidden; pointer-events: none; z-index: 101; transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1), visibility 0.3s; }
.hero-cta-btn:hover::after, .hero-cta-btn.is-auto-hover::after, .hero-cta-btn:hover::before, .hero-cta-btn.is-auto-hover::before { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.hero-cta-btn.is-auto-hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,222,0,0.3); }
@media (max-width: 768px) { .hero-cta-btn::after { max-width: 240px; white-space: normal; font-size: 11px; padding: 8px 12px; } }
.hero-h1 .h1-line:first-child .h1-inner { background: linear-gradient(110deg, var(--ivory) 15%, #F5E9B6 40%, #CEDBE8 60%, var(--ivory) 85%); background-size: 300% auto; color: transparent; -webkit-text-fill-color: transparent; -webkit-background-clip: text; background-clip: text; animation: lineRevealUp 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards, heroShimmer 20s 1.05s linear infinite; display: inline-block; }
@keyframes heroShimmer { 0% { background-position: 300% center; } 100% { background-position: -150% center; } }


@media (max-width: 960px) {
  .hero-h1 { font-size: 52px !important; }
  .hero-h1 .h1-line { white-space: normal !important; }
}
@media (max-width: 768px) {
  .hero-h1 { font-size: 38px !important; }
  .hero-h1 .h1-line { white-space: normal !important; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 28px !important; }
  .hero-h1 .h1-line { white-space: normal !important; }
}


