:root {
  --blue: #007aff;
  --blue-dark: #0060d0;
  --ink: #14141a;
  --body: #3a3a42;
  --muted: #71717d;
  --line: #e3e3e9;
  --card: #ffffff;
  --bg: #f4f5f8;
  --maxw: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--bg);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px 64px;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-inner .spacer {
  flex: 1;
}

.topbar-nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
  font-weight: 550;
}

.topbar-nav a {
  color: var(--muted);
}

.topbar-nav a:hover {
  color: var(--blue);
  text-decoration: none;
}

.mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid var(--line);
  flex: none;
  background: #fff;
}

.mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand {
  font-size: 16px;
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand:hover {
  text-decoration: none;
}

.hero {
  background: linear-gradient(155deg, #0a84ff 0%, #0a5fd6 55%, #0546a8 100%);
  color: #fff;
  border-radius: 22px;
  padding: 34px 30px 30px;
  margin-top: 24px;
  box-shadow: 0 14px 34px rgba(10, 95, 214, .22);
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(27px, 5vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 14px;
  color: #fff;
}

.hero p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .92);
}

.hero .cta {
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  background: #fff;
  color: var(--blue);
}

.hero .cta:hover {
  background: #f2f7ff;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 30px;
  margin-top: 18px;
  box-shadow: 0 2px 14px rgba(20, 20, 26, .05);
}

.card h2 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 680;
  color: var(--ink);
  margin: 0 0 12px;
}

.card p {
  margin: 0 0 14px;
}

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

.grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

@media (min-width: 700px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.grid .card {
  margin-top: 0;
}

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

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

li {
  margin-bottom: 8px;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.checks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #e8f2ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23007aff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center/12px no-repeat;
}

.article-link {
  display: block;
  padding: 18px 20px;
  border-radius: 14px;
  background: #f2f7ff;
  border: 1px solid #d3e4ff;
  color: inherit;
  transition: background .15s ease;
}

.article-link:hover {
  background: #e8f2ff;
  text-decoration: none;
}

.article-link strong {
  display: block;
  color: var(--blue);
  font-size: 17px;
  margin-bottom: 6px;
}

.article-link span {
  color: var(--body);
  font-size: 15px;
  line-height: 1.5;
}

.cta-box {
  background: #f2f7ff;
  border: 1px solid #d3e4ff;
  border-radius: 16px;
  padding: 22px;
  margin: 8px 0 0;
  text-align: center;
}

.cta-box p {
  margin: 0 0 6px;
  color: var(--body);
}

.cta-box .price {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 650;
  font-size: 16px;
  box-shadow: 0 6px 16px rgba(0, 122, 255, .28);
  transition: background .15s ease;
}

.cta:hover {
  background: var(--blue-dark);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font-weight: 550;
  font-size: 15px;
}

.btn:hover {
  background: #f2f7ff;
  text-decoration: none;
}

.btnrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.notice {
  background: #f7f7f9;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

.notice strong {
  color: var(--body);
}

.legal {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

.legal strong {
  color: var(--body);
  display: block;
  margin-bottom: 6px;
}

.page-title {
  font-size: clamp(26px, 4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}

.page-lead {
  color: var(--muted);
  margin: 0 0 8px;
}

footer.site {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 20px 40px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

/* Article page */
article.content {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 30px 34px;
  margin-top: 18px;
  box-shadow: 0 2px 14px rgba(20, 20, 26, .05);
}

article.content h2 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 680;
  color: var(--ink);
  margin: 36px 0 12px;
}

article.content h2:first-of-type {
  margin-top: 8px;
}

article.content p {
  margin: 0 0 15px;
}

.prices {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border-top: 1px solid var(--line);
}

.prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.prices .amount {
  font-weight: 650;
  color: var(--ink);
  white-space: nowrap;
}

ol.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  counter-reset: step;
}

ol.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 40px;
  margin-bottom: 14px;
  min-height: 26px;
}

ol.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.faq {
  border-top: 1px solid var(--line);
  margin-bottom: 8px;
}

.faq div {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}

.faq .q {
  display: block;
  color: var(--ink);
  font-weight: 650;
  margin-bottom: 5px;
}

.faq p {
  margin: 0;
}

article.content .cta-box {
  margin: 26px 0;
}

article.content .notice {
  margin-top: 30px;
}

@media (max-width: 560px) {
  body {
    font-size: 16.5px;
  }

  .hero {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .card,
  article.content {
    padding: 22px 20px 28px;
    border-radius: 18px;
  }

  .topbar-nav {
    display: none;
  }
}
