:root {
  --bg: #010104;
  --bg-soft: #10102d;
  --surface: #1b1b40;
  --surface-2: #3c297b;
  --primary: #c30054;
  --primary-hover: #e0146a;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.74);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(195, 0, 84, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at top right,
      rgba(60, 41, 123, 0.34),
      transparent 34%
    ),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(1, 1, 4, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  height: 58px;
  width: 150px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--surface-2));
  position: relative;
}



.logo img {
  height: 58px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px var(--shadow);
  cursor: pointer;
  font-family: inherit;
}

.button:hover {
  background: var(--primary-hover);
}

.header-actions .button:first-child {
  background: var(--surface-2);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 30px;
  background: linear-gradient(
    180deg,
    rgba(27, 27, 64, 0.98),
    rgba(16, 16, 45, 0.98)
  );
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 18px 50px var(--shadow);
}

.section:first-of-type {
  margin-top: 42px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.15;
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -1.2px;
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.6px;
}

h3 {
  font-size: 21px;
}

p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 14px 0 18px;
  padding-left: 22px;
}

li {
  margin-bottom: 9px;
  color: var(--text-muted);
}

table {
  width: 100%;
  max-width: 1120px;
  margin: 24px auto;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: table;
  table-layout: auto;
}

tr {
  border-bottom: 1px solid var(--border);
}

tr:last-child {
  border-bottom: 0;
}

td {
  padding: 18px 22px;
  color: var(--text-muted);
  vertical-align: middle;
}

.table-with-head tr:first-child td {
  color: var(--text);
  font-weight: 800;
  background: rgba(60, 41, 123, 0.72);
}

.info-table td:first-child {
  color: var(--text);
  font-weight: 800;
  width: 32%;
}

.info-table tr:first-child td {
  background: transparent;
}

.review {
  margin: 18px 0;
  padding: 22px;
  background: rgba(16, 16, 45, 0.86);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pros-cons > div {
  padding: 22px;
  background: rgba(16, 16, 45, 0.86);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.faq-container {
  display: grid;
  gap: 12px;
}

.faq-item {
  position: relative;
  padding: 20px 56px 20px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.toggle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

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

.icon {
  position: absolute;
  right: 20px;
  top: 22px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 11px;
  height: 2px;
  background: var(--text);
}

.icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  display: none;
  margin-top: 12px;
}

.toggle:checked ~ .faq-answer {
  display: block;
}

.toggle:checked ~ .icon::after {
  display: none;
}

footer {
  padding: 32px 0;
  background: rgba(1, 1, 4, 0.92);
  border-top: 1px solid var(--border);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-inner + .footer-inner {
  margin-top: 14px;
}

.footer-brand p {
  margin-bottom: 6px;
}

footer p {
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 0;
  }

  .header-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 22px;
    border-radius: 20px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  table {
    display: block;
    overflow-x: auto;
  }

  td {
    min-width: 190px;
  }

  .info-table td:first-child {
    width: auto;
  }
}
