:root {
  --ink: #16181d;
  --ink-soft: #2b2f36;
  --muted: #5c6270;
  --bg: #ffffff;
  --line: #e6e8ec;
  --line-soft: #eef0f3;
  --accent: #1b6cf0;
  --radius: 12px;
  --maxw: 1150px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 28px 96px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(32px, 4.4vw, 50px);
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-top: 52px;
}

h3 {
  font-size: clamp(21px, 2.2vw, 25px);
  margin-top: 40px;
}

p {
  margin: 0 0 26px;
  color: var(--ink-soft);
}

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

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

ol {
  margin: 0 0 28px;
  padding-left: 26px;
  color: var(--ink-soft);
}

ol li { margin-bottom: 10px; padding-left: 4px; }

/* Hero */
.hero {
  margin: 0 0 40px;
  position: relative;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.hero-cta {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: inline-block;
  padding: 15px 44px;
  border-radius: 999px;
  background: #ffffff;
  color: #16181d;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  transition: transform .15s ease, box-shadow .15s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

/* Tables */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 0 0 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

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

thead th {
  background: #fafbfc;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
}

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

tbody td:first-child { color: var(--ink); font-weight: 600; }

/* FAQ */
.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}

.faq-item:last-of-type { border-bottom: 0; }

.faq-q {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.faq-a { margin: 0; color: var(--ink-soft); }

@media (max-width: 700px) {
  body { font-size: 17px; }
  .page { padding: 32px 18px 64px; }
  h2 { margin-top: 40px; }
  th, td { padding: 12px 14px; }
  .hero-cta { right: 14px; bottom: 14px; padding: 12px 30px; font-size: 16px; }
}
