:root {
  --blue: #2F8FE6;
  --orange: #F7A828;
  --green: #3CAA5D;
  --ink: #1C2230;
  --ink-soft: #5B6373;
  --bg: #FBFBFA;
  --card: #FFFFFF;
  --line: #ECEDF1;
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
nav {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.navlinks { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }
.navlinks a { color: var(--ink-soft); }
.navlinks a.active { color: var(--ink); }
.hero {
  padding: 72px 0 56px;
  text-align: center;
}
.hero img.icon {
  width: 108px;
  height: 108px;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(47, 143, 230, 0.22);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.hero h1 .accent-blue { color: var(--blue); }
.hero h1 .accent-orange { color: var(--orange); }
.hero h1 .accent-green { color: var(--green); }
.hero p.lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 34px;
}
.badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.store-badge {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 13px 26px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
}
.store-badge:hover { text-decoration: none; opacity: 0.88; }
.store-note { display: block; margin-top: 10px; font-size: 13px; color: var(--ink-soft); }
.section { padding: 56px 0; }
.section h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.section p.section-lead {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 16px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 720px) {
  .grid { grid-template-columns: 1fr; }
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.card .icn {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.card h3 { font-size: 17px; margin: 0 0 8px; font-weight: 600; }
.card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.icn-blue { background: rgba(47,143,230,0.12); }
.icn-orange { background: rgba(247,168,40,0.14); }
.icn-green { background: rgba(60,170,93,0.13); }
.strip {
  background: linear-gradient(120deg, rgba(47,143,230,0.08), rgba(247,168,40,0.08) 50%, rgba(60,170,93,0.08));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.strip .item { flex: 1; min-width: 200px; }
.strip .item .num { font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.strip .item .lab { font-size: 14px; color: var(--ink-soft); }
.page-head {
  padding: 56px 0 30px;
  text-align: center;
}
.page-head img.icon-sm {
  width: 64px; height: 64px; border-radius: 16px; margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(47,143,230,0.18);
}
.page-head h1 { font-size: 32px; margin: 0 0 10px; letter-spacing: -0.01em; }
.page-head p { color: var(--ink-soft); margin: 0; font-size: 15px; }
.content-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 40px 20px;
  margin-bottom: 64px;
}
.content-card h2 {
  font-size: 19px;
  margin: 34px 0 12px;
  font-weight: 600;
}
.content-card h2:first-child { margin-top: 30px; }
.content-card p, .content-card li { font-size: 15px; color: var(--ink-soft); }
.content-card ul { padding-left: 20px; }
.content-card li { margin-bottom: 6px; }
.content-card strong { color: var(--ink); }
.content-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 20px;
  font-size: 14px;
}
.content-card th, .content-card td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}
.content-card th { color: var(--ink); font-weight: 600; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 16px; margin: 0 0 8px; font-weight: 600; }
.faq-item p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.contact-box {
  background: linear-gradient(120deg, rgba(47,143,230,0.08), rgba(60,170,93,0.08));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  text-align: center;
  margin-bottom: 60px;
}
.contact-box h2 { margin: 0 0 8px; font-size: 20px; }
.contact-box p { margin: 0 0 18px; color: var(--ink-soft); font-size: 14.5px; }
.contact-box a.mail-btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14.5px;
}
.contact-box a.mail-btn:hover { text-decoration: none; opacity: 0.88; }
footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  text-align: center;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }
footer .flinks { display: flex; gap: 20px; font-size: 13.5px; }
footer .flinks a { color: var(--ink-soft); }
