* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
  color: #312e81;
  line-height: 1.72;
}
a { color: #6d28d9; }
img { max-width: 100%; height: auto; display: block; border-radius: 12px; }

.tvo-bar {
  background: linear-gradient(120deg, #4c1d95, #7c3aed);
  color: #ede9fe;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 22px;
}
.tvo-logo { font-weight: 800; font-size: 17px; }
.tvo-nav { display: flex; flex-wrap: wrap; gap: 12px; font-size: 14px; }
.tvo-nav a { color: #c4b5fd; text-decoration: none; font-weight: 600; }
.tvo-nav a:hover { color: #fff; }
.tvo-btn {
  display: inline-block;
  background: #fbbf24;
  color: #312e81 !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
.tvo-btn--dark { background: #4c1d95; color: #ede9fe !important; }

.tvo-wrap { max-width: 900px; margin: 0 auto; padding: 28px 22px 64px; }
.tvo-hero h1 { margin: 0 0 12px; font-size: clamp(26px, 4vw, 34px); color: #4c1d95; }
.tvo-lead {
  background: #fff;
  border: 1px solid #c4b5fd;
  border-radius: 12px;
  padding: 16px;
  margin: 0 0 16px;
}
.tvo-hero-img { margin: 20px 0; border: 1px solid #a78bfa; overflow: hidden; }

.tvo-progress {
  background: #fff;
  border: 1px solid #c4b5fd;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}
.tvo-progress-bar {
  height: 8px;
  background: #ede9fe;
  border-radius: 999px;
  overflow: hidden;
  margin: 12px 0;
}
.tvo-progress-fill {
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  border-radius: 999px;
  transition: width 0.3s ease;
}
.tvo-progress-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.tvo-progress-btns button {
  padding: 8px 14px;
  border: 1px solid #a78bfa;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #4c1d95;
}

.tvo-card {
  background: #fff;
  border: 1px solid #ddd6fe;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}
.tvo-card h2 { margin: 0 0 12px; font-size: 22px; color: #5b21b6; }

.tvo-steps { list-style: none; padding: 0; margin: 0; }
.tvo-steps li {
  padding: 14px 14px 14px 48px;
  position: relative;
  margin-bottom: 10px;
  background: #f5f3ff;
  border-radius: 10px;
  border: 1px solid #ede9fe;
}
.tvo-steps li::before {
  content: attr(data-n);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 26px;
  height: 26px;
  background: #7c3aed;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tvo-faq details {
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
}
.tvo-faq summary { cursor: pointer; font-weight: 600; color: #5b21b6; }

.tvo-foot { text-align: center; padding: 22px; font-size: 13px; color: #6b7280; }

@media (prefers-reduced-motion: reduce) {
  *, *::before { transition: none !important; }
  html { scroll-behavior: auto; }
}
