:root {
  --red: #d71920;
  --dark-red: #a90f17;
  --gold: #ffd347;
  --ink: #21172b;
  --muted: #665f70;
  --line: #eee7f4;
  --paper: #ffffff;
  --soft: #faf7f1;
  --violet: #7b2cbf;
  --green: #167a55;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.topline { height: 6px; background: linear-gradient(90deg, var(--red), var(--gold), var(--red)); }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.brand { display: flex; align-items: center; gap: 14px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img { width: 58px; height: 58px; }
.brand strong { display: block; font-size: 20px; letter-spacing: .2px; }
.brand em { display: block; font-size: 13px; color: var(--muted); font-style: normal; margin-top: 2px; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 6px; }
.main-nav a {
  display: inline-flex; align-items: center;
  min-height: 38px; padding: 8px 11px; border-radius: 999px;
  color: var(--ink); font-size: 14px; font-weight: 700;
}
.main-nav a:hover, .main-nav a.active { background: var(--red); color: #fff; text-decoration: none; }
.nav-toggle { display: none; border: 0; border-radius: 12px; background: var(--red); color: #fff; padding: 10px 13px; font-size: 24px; }
.page-hero {
  background:
    radial-gradient(circle at 80% 0%, rgba(255,211,71,.42), transparent 28%),
    linear-gradient(135deg, #fff5ea 0%, #fff 52%, #f7f2ff 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero .wrap { padding: 58px 0 54px; }
.eyebrow { color: var(--red); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: 12px; margin-bottom: 12px; }
h1 { font-size: clamp(34px, 5vw, 62px); line-height: 1.05; margin: 0 0 18px; max-width: 900px; }
.page-hero p { font-size: 20px; max-width: 780px; color: var(--muted); margin: 0; }
.section { padding: 54px 0; }
.section.alt { background: var(--soft); }
.section-title { font-size: clamp(26px, 3.2vw, 42px); line-height: 1.12; margin: 0 0 18px; }
.lead { color: var(--muted); font-size: 18px; max-width: 860px; }
.hero-home { padding: 70px 0 64px; background: linear-gradient(135deg, #d71920 0%, #a90f17 55%, #7b1218 100%); color: #fff; position: relative; overflow: hidden; }
.hero-home:after { content: ''; position: absolute; width: 540px; height: 540px; border-radius: 50%; right: -170px; top: -210px; background: rgba(255,211,71,.18); }
.hero-home .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center; }
.hero-home h1 { color: #fff; }
.hero-home p { font-size: 21px; color: rgba(255,255,255,.86); max-width: 760px; }
.hero-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 28px; padding: 30px; box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.hero-card img { width: 126px; height: 126px; display: block; margin-bottom: 18px; }
.hero-card strong { display: block; font-size: 26px; line-height: 1.15; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 18px; border-radius: 999px; font-weight: 800; border: 2px solid transparent; }
.btn.primary { background: var(--gold); color: #4c1b00; }
.btn.secondary { background: #fff; color: var(--red); }
.btn.outline { color: var(--red); border-color: var(--red); background: #fff; }
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.grid { display: grid; gap: 20px; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: 0 12px 30px rgba(33,23,43,.06); }
.card h2, .card h3 { margin-top: 0; line-height: 1.18; }
.card p:last-child, .card ul:last-child, .card ol:last-child { margin-bottom: 0; }
.icon { width: 46px; height: 46px; border-radius: 15px; display: inline-grid; place-items: center; background: #fff2c2; color: var(--red); font-weight: 900; margin-bottom: 16px; }
.kpi { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; margin-top: 30px; }
.kpi .card { padding: 20px; }
.kpi strong { display: block; color: var(--red); font-size: 24px; }
.content { max-width: 960px; }
.content h2 { margin-top: 36px; font-size: 30px; }
.content h3 { margin-top: 26px; font-size: 22px; }
.content ul, .content ol { padding-left: 22px; }
.notice { background: #fff8dc; border-left: 5px solid var(--gold); padding: 18px 20px; border-radius: 16px; }
.steps { counter-reset: step; display: grid; gap: 16px; }
.step { position: relative; padding: 20px 20px 20px 74px; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.step:before { counter-increment: step; content: counter(step); position: absolute; left: 20px; top: 20px; width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-weight: 900; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 780px; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #fff6de; color: #4c1b00; font-weight: 900; }
tr:last-child td { border-bottom: 0; }
.doc-list { display: grid; gap: 14px; }
.doc-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.doc-row strong { display: block; }
.doc-row span { color: var(--muted); font-size: 14px; }
.org-img { width: 100%; border: 1px solid var(--line); border-radius: 26px; box-shadow: 0 18px 45px rgba(33,23,43,.08); background: #fff; }
.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.site-footer { background: #1f1828; color: rgba(255,255,255,.86); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 36px 0; }
.site-footer a { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); text-align: center; padding: 14px; font-size: 14px; color: rgba(255,255,255,.66); }
@media (max-width: 900px) {
  .hero-home .wrap, .grid.cols-2, .grid.cols-3, .kpi, .contact-box, .footer-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; position: absolute; left: 18px; right: 18px; top: 82px; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 18px 50px rgba(33,23,43,.14); justify-content: flex-start; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .header-inner { min-height: 76px; }
  .brand em { display: none; }
  .hero-card { display: none; }
}
@media (max-width: 520px) {
  .wrap { width: min(100% - 24px, 1160px); }
  .page-hero .wrap, .hero-home { padding-top: 42px; padding-bottom: 42px; }
  .doc-row { display: block; }
  .doc-row .btn { margin-top: 12px; }
}