
:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #f2f5fb;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe3ef;
  --line-strong: #c6d3e6;
  --brand: #79941F;
  --brand-2: #33540A;
  --accent: #C48921;
  --success: #0f766e;
  --link: #821066;
  --link-hover: #3CA7C2;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.05);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(15,79,214,.08), transparent 30%),
    radial-gradient(circle at top left, rgba(109,40,217,.06), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 55%, #ffffff 100%);
  line-height: 1.65;
}
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198,211,230,.75);
}
.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .02em;
}
.brand img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}
.nav-links a {
  color: #1e293b;
  font-weight: 600;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: .88rem;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(121,148,31,.12);
  color: var(--link-hover);
  text-decoration: none;
}
main { padding: 26px 0 72px; }
.hero {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 28px;
  align-items: center;
  padding: 32px 0 12px;
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.88));
  border: 1px solid rgba(198,211,230,.8);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(128,0,0,.1);
  color: #800000;
  border: 1px solid rgba(128,0,0,.2);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #800000;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.04;
  margin: 14px 0 14px;
  letter-spacing: -.03em;
}
h1 { color: #79941F; }
h2 { color: #33540A; }
h3 { color: #C48921; }
.hero p.lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
  font-weight: 750;
}
.btn:hover { text-decoration: none; filter: brightness(.92); color: white; }
.btn.primary {
  color: #ffffff;
  border-color: transparent;
  background: #C48921;
}
.btn.soft {
  background: #C48921;
  color: #ffffff;
  border-color: transparent;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  border-radius: 28px;
  border: 1px solid rgba(198,211,230,.8);
  box-shadow: var(--shadow);
  min-height: 360px;
  object-fit: cover;
}
.hero-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 320px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(198,211,230,.9);
  box-shadow: var(--shadow-soft);
}
.hero-panel strong { display: block; margin-bottom: 4px; }
section.block { padding: 28px 0 10px; }
.section-head {
  margin-bottom: 16px;
  max-width: 840px;
}
.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.12;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}
.section-head p,
.text p,
.card p,
.callout p,
.list-check li,
ol.process li,
.details li,
.table-card li,
.note,
form p,
address,
.small { color: var(--muted); }
.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.col-7 { grid-column: span 7; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-8 { grid-column: span 8; }
.panel,
.card,
.callout,
.table-card,
.form-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(198,211,230,.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.panel { padding: 24px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.card {
  padding: 20px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.3;
}
.card p { margin: 0 0 10px; }
.card .link-row,
.inline-link {
  margin-top: 12px;
  font-weight: 700;
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 14px;
  margin-top: 18px;
}
.stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(15,79,214,.05);
  border: 1px solid rgba(15,79,214,.1);
}
.stat strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 8px;
}
.text h3,
.panel h3,
.callout h3,
.form-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.list-check,
.details,
.link-list,
.breadcrumb,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-check li,
.details li,
.link-list li {
  position: relative;
  padding-left: 24px;
  margin: 0 0 10px;
}
.list-check li::before,
.details li::before,
.link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}
ol.process {
  margin: 0;
  padding-left: 20px;
}
ol.process li { margin: 0 0 12px; }
.callout {
  padding: 24px;
  background: linear-gradient(135deg, rgba(15,79,214,.09), rgba(109,40,217,.08));
}
.callout h3 { margin-bottom: 8px; }
.image-block img,
.inline-image {
  border-radius: 22px;
  border: 1px solid rgba(198,211,230,.82);
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
}
.image-caption {
  font-size: .92rem;
  margin-top: 10px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  font-size: .92rem;
}
.breadcrumb li { color: #64748b; }
.breadcrumb li::after {
  content: "/";
  margin-left: 8px;
  color: #94a3b8;
}
.breadcrumb li:last-child::after { display: none; }
.quote {
  padding: 22px;
  border-left: 4px solid var(--brand);
  background: rgba(248,250,252,.96);
  border-radius: 0 18px 18px 0;
}
.quote p { font-size: 1.05rem; margin: 0 0 8px; }
.quote strong { font-size: .95rem; }
.table-card { overflow: hidden; }
.table-card table {
  width: 100%;
  border-collapse: collapse;
}
.table-card th,
.table-card td {
  text-align: left;
  vertical-align: top;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.table-card th {
  background: #f8fbff;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #475569;
}
.table-card tr:last-child td { border-bottom: 0; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15,79,214,.07);
  color: #103783;
  border: 1px solid rgba(15,79,214,.13);
  font-weight: 700;
  font-size: .89rem;
}
.notice {
  border-left: 4px solid var(--success);
  padding: 14px 16px;
  border-radius: 0 16px 16px 0;
  background: rgba(15,118,110,.08);
}
form {
  display: grid;
  gap: 14px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: .94rem;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: white;
}
textarea { min-height: 150px; resize: vertical; }
footer {
  border-top: 1px solid rgba(198,211,230,.85);
  background: rgba(255,255,255,.82);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 28px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a { color: #334155; }
.hr {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(198,211,230,.95), transparent);
  margin: 14px 0 0;
}
@media (max-width: 960px) {
  .hero,
  .section-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }
  .col-7, .col-5, .col-6, .col-4, .col-8 {
    grid-column: auto;
  }
  .hero-visual img { min-height: 260px; }
  .hero-panel {
    position: static;
    margin-top: 14px;
    max-width: none;
  }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 22px), var(--max)); }
  .nav { align-items: flex-start; }
  .hero-card, .panel, .card, .callout, .form-card { padding: 20px; }
  .hero h1 { font-size: 2.2rem; }
  .btn { width: 100%; }
  .actions { align-items: stretch; }
}