:root {
  --ink: #182026;
  --muted: #5d6972;
  --line: #d9e1e4;
  --paper: #fbfcfb;
  --panel: #ffffff;
  --green: #22795d;
  --green-soft: #e4f3eb;
  --coral: #cb5d4c;
  --gold: #b5791c;
  --blue: #2d6f8f;
  --shadow: 0 16px 38px rgba(24, 32, 38, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 251, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 760;
  min-width: 0;
  text-decoration: none;
}

.brand span:last-child {
  overflow-wrap: anywhere;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  padding: 0 10px;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #edf4f1;
  color: var(--ink);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 38px;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
  overflow-wrap: anywhere;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 720;
  padding: 0 18px;
  text-decoration: none;
  text-align: center;
}

.button.primary {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.trust-panel {
  display: grid;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.visual {
  position: relative;
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(34, 121, 93, 0.94), rgba(45, 111, 143, 0.88)),
    url("assets/verification-board.svg");
  background-position: center;
  background-size: cover;
}

.visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
}

.trust-list {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.trust-row,
.contact-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
}

.section {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 164px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.card p,
.contact-row p,
.trust-row p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.meta-list div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.meta-list dt {
  color: var(--muted);
  font-weight: 700;
}

.meta-list dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 650;
}

.notice {
  border-left: 4px solid var(--gold);
  background: #fff7e8;
  padding: 16px 18px;
}

.page-hero {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 34px;
}

.legal-content {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.legal-content section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-content ul {
  padding-left: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f2f6f4;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-grid,
  .split,
  .grid {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    min-height: 0;
  }

  .meta-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero,
  .page-hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 2.15rem;
  }

  .actions,
  .button {
    width: 100%;
  }
}
