/* Premium video-guide pages (Legal section, NLU compare, etc.) */
.vg-page {
  --vg-ink: #1c1915;
  --vg-muted: #5c564c;
  --vg-paper: #f3efe6;
  --vg-card: #fffcf7;
  --vg-gold: #d4a017;
  --vg-gold-soft: #f0d48a;
  --vg-line: rgba(28, 25, 21, 0.1);
  --vg-shadow: 0 18px 50px rgba(28, 25, 21, 0.12);
  background:
    radial-gradient(ellipse 70% 40% at 100% -10%, rgba(212, 160, 23, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 20%, rgba(28, 25, 21, 0.05), transparent 50%),
    var(--vg-paper) !important;
  padding-bottom: 72px !important;
}

.vg-page .sem-wrap {
  max-width: 1120px;
}

.vg-hero {
  position: relative;
  margin: 0 0 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #171411 0%, #2a241c 48%, #3d3220 100%);
  color: #fff;
  box-shadow: var(--vg-shadow);
}

.vg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(212, 160, 23, 0.28), transparent 42%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.05), transparent 40%);
  pointer-events: none;
}

.vg-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 300px);
  gap: 28px 40px;
  align-items: center;
  padding: 36px 32px 40px;
}

.vg-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 16px;
}

.vg-crumb a {
  color: var(--vg-gold-soft) !important;
  text-decoration: none !important;
  font-weight: 700;
}

.vg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vg-gold);
  color: var(--vg-ink);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.vg-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  max-width: 16ch;
  text-transform: none;
}

.vg-lead {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  max-width: 38rem;
}

.vg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.vg-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800 !important;
  font-size: 14px;
  text-decoration: none !important;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.vg-btn:hover {
  transform: translateY(-2px);
  text-decoration: none !important;
}

.vg-btn-gold {
  background: var(--vg-gold) !important;
  color: var(--vg-ink) !important;
}

.vg-btn-gold:hover {
  background: #e4b42a !important;
  color: var(--vg-ink) !important;
}

.vg-btn-line {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.vg-btn-line:hover {
  border-color: var(--vg-gold) !important;
  color: var(--vg-gold-soft) !important;
}

.vg-btn-dark {
  background: var(--vg-ink) !important;
  color: #fff !important;
}

.vg-btn-dark:hover {
  background: #2c261e !important;
  color: #fff !important;
}

.vg-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vg-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 14px;
  min-width: 110px;
}

.vg-stat strong {
  display: block;
  color: var(--vg-gold-soft);
  font-size: 1.05rem;
  font-weight: 800;
}

.vg-stat span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.vg-device {
  margin: 0 auto;
  width: min(100%, 280px);
  background: linear-gradient(180deg, #2a2621, #12100e);
  border-radius: 34px;
  padding: 14px 12px 16px;
  border: 1px solid rgba(240, 212, 138, 0.35);
  box-shadow:
    0 0 0 6px rgba(0, 0, 0, 0.25),
    0 28px 60px rgba(0, 0, 0, 0.45);
}

.vg-device-bar {
  width: 36%;
  height: 7px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #3a342c;
}

.vg-player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}

.vg-player iframe,
.vg-player img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

.vg-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
  cursor: pointer;
  color: #fff;
  padding: 16px;
}

.vg-play-orb {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--vg-gold);
  color: var(--vg-ink);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease;
}

.vg-play-orb svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.vg-play:hover .vg-play-orb {
  transform: scale(1.06);
}

.vg-play span {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vg-device-caption {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.vg-device-caption a {
  color: var(--vg-gold-soft) !important;
  font-weight: 700;
  text-decoration: none !important;
}

.vg-answer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  background: var(--vg-card);
  border: 1px solid var(--vg-line);
  border-radius: 22px;
  padding: 22px 24px;
  margin: 0 0 28px;
  box-shadow: 0 10px 28px rgba(28, 25, 21, 0.05);
}

.vg-answer-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--vg-gold), #b8860b);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(212, 160, 23, 0.35);
}

.vg-answer h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--vg-ink);
}

.vg-answer p {
  margin: 0;
  color: var(--vg-muted);
  line-height: 1.7;
}

.vg-answer strong {
  color: var(--vg-ink);
}

.vg-section {
  margin: 0 0 24px;
}

.vg-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
}

.vg-section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--vg-ink);
}

.vg-section-head p {
  margin: 0;
  color: var(--vg-muted);
  max-width: 34rem;
  line-height: 1.55;
}

.vg-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vg-tile {
  background: var(--vg-card);
  border: 1px solid var(--vg-line);
  border-radius: 20px;
  padding: 20px 18px;
  box-shadow: 0 8px 24px rgba(28, 25, 21, 0.04);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.vg-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 160, 23, 0.45);
}

.vg-tile-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.16);
  color: #8a6a14;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 12px;
}

.vg-tile h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--vg-ink);
}

.vg-tile p {
  margin: 0;
  color: var(--vg-muted);
  line-height: 1.55;
  font-size: 0.96rem;
}

.vg-panel {
  background: var(--vg-card);
  border: 1px solid var(--vg-line);
  border-radius: 22px;
  padding: 24px 22px;
  margin: 0 0 24px;
  box-shadow: 0 8px 24px rgba(28, 25, 21, 0.04);
}

.vg-panel h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--vg-ink);
}

.vg-panel p,
.vg-panel li {
  color: var(--vg-muted);
  line-height: 1.7;
}

.vg-panel a {
  color: #8a6a14 !important;
  font-weight: 700;
  text-decoration: none !important;
}

.vg-panel a:hover {
  text-decoration: underline !important;
}

.vg-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.vg-timeline li {
  position: relative;
  padding: 0 0 22px 56px;
}

.vg-timeline li:last-child {
  padding-bottom: 0;
}

.vg-timeline li::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--vg-gold), rgba(212, 160, 23, 0.05));
}

.vg-timeline li:last-child::before {
  display: none;
}

.vg-timeline-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vg-ink);
  color: var(--vg-gold-soft);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  border: 2px solid var(--vg-gold);
}

.vg-timeline strong {
  display: block;
  color: var(--vg-ink);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.vg-timeline p {
  margin: 0;
}

.vg-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 0 24px;
}

.vg-duo .vg-panel {
  margin: 0;
  height: 100%;
}

.vg-duo h2 {
  font-size: 1.2rem;
}

.vg-duo ul {
  margin: 0;
  padding-left: 1.1rem;
}

.vg-duo li {
  margin-bottom: 8px;
}

.vg-example {
  background:
    linear-gradient(135deg, rgba(212, 160, 23, 0.12), transparent 40%),
    var(--vg-card);
  border: 1px solid rgba(212, 160, 23, 0.28);
}

.vg-example-label {
  display: inline-block;
  background: var(--vg-ink);
  color: var(--vg-gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.vg-faq details {
  background: #fff;
  border: 1px solid var(--vg-line);
  border-radius: 16px;
  margin-bottom: 10px;
  padding: 14px 16px;
  transition: border-color 0.15s ease;
}

.vg-faq details[open] {
  border-color: rgba(212, 160, 23, 0.45);
  box-shadow: 0 8px 20px rgba(28, 25, 21, 0.05);
}

.vg-faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--vg-ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vg-faq summary::-webkit-details-marker {
  display: none;
}

.vg-faq summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.15);
  color: #8a6a14;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.vg-faq details[open] summary::after {
  content: "–";
}

.vg-faq details p {
  margin: 10px 0 0;
  color: var(--vg-muted);
  line-height: 1.65;
}

.vg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vg-chips a {
  background: #fff !important;
  border: 1px solid var(--vg-line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700 !important;
  color: #5c4a1a !important;
  text-decoration: none !important;
}

.vg-chips a:hover {
  background: var(--vg-gold) !important;
  border-color: var(--vg-gold);
  color: var(--vg-ink) !important;
}

.vg-cta-band {
  margin-top: 8px;
  border-radius: 24px;
  padding: 28px 24px;
  background:
    radial-gradient(circle at 90% 20%, rgba(212, 160, 23, 0.25), transparent 40%),
    linear-gradient(120deg, #171411, #2f281c);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vg-cta-band h2 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  color: #fff;
}

.vg-cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 34rem;
}

@media (max-width: 960px) {
  .vg-hero-inner {
    grid-template-columns: 1fr;
    padding: 28px 20px 32px;
  }

  .vg-hero h1 {
    max-width: none;
  }

  .vg-device {
    order: -1;
    width: min(100%, 260px);
  }
}

@media (max-width: 700px) {
  .vg-bento,
  .vg-duo {
    grid-template-columns: 1fr;
  }

  .vg-answer {
    grid-template-columns: 1fr;
  }

  .vg-hero-actions,
  .vg-cta-band .vg-hero-actions {
    flex-direction: column;
  }

  .vg-btn {
    width: 100%;
  }

  .vg-timeline li {
    padding-left: 50px;
  }
}
