:root {
  --bg: #f8f6fd;
  --ink: #0c0c11;
  --body: #3c3c46;
  --muted: #6a6a78;
  --line: #e4e0f0;
  --card: #ffffff;
  --accent: #6c3df4;
  --accent-soft: #f1ecfe;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.85;
  font-weight: 400;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 40px 110px;
}

h1, h2, h3 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 28px;
}

h1 { font-size: 62px; }
h2 { font-size: 40px; margin-top: 8px; }
h3 { font-size: 27px; line-height: 1.3; margin: 46px 0 18px; }

p { margin: 0 0 26px; }

strong { color: var(--ink); font-weight: 700; }

a { color: var(--accent); }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 60px 0;
}

.banner {
  position: relative;
  margin: 0 0 46px;
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.play {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  display: inline-block;
  padding: 18px 62px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 34px rgba(56, 20, 150, .45);
  transition: transform .18s ease, background .18s ease;
}

.play:hover { background: #5a2ce0; transform: translateX(-50%) translateY(-2px); }

ol, ul { margin: 0 0 26px; padding-left: 26px; }
li { margin-bottom: 12px; }

.table-wrap {
  overflow-x: auto;
  margin: 0 0 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
  line-height: 1.6;
}

th, td {
  text-align: left;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

thead th {
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

tbody th {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 30px;
  margin-bottom: 16px;
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.faq-item p { margin: 0; font-size: 18px; }

@media (max-width: 900px) {
  body { font-size: 17px; line-height: 1.8; }
  .wrap { padding: 44px 20px 70px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  .banner img { border-radius: 12px; }
  .play { bottom: 18px; padding: 13px 38px; font-size: 16px; }
  th, td { padding: 13px 16px; }
}
