:root {
  --ink: #111827;
  --body: #4b5563;
  --muted: #6b7280;
  --blue: #1d4ed8;
  --blue-dark: #163ca6;
  --blue-soft: #e8efff;
  --teal: #0f766e;
  --teal-soft: #dff7f3;
  --amber: #f59e0b;
  --canvas: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #eef2f7;
  --border: #e5e7eb;
  --max: 1180px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(29, 78, 216, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(29, 78, 216, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 11px;
  background: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
  color: #fff;
  font-size: 14px;
}

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

.nav-links a {
  padding: 9px 12px;
  border-radius: 9px;
  color: #374151;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

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

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(29, 78, 216, 0.18);
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: 180ms ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.hero {
  position: relative;
  padding: 88px 0 80px;
  background:
    radial-gradient(circle at 12% 15%, rgba(29, 78, 216, 0.12), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(15, 118, 110, 0.12), transparent 30%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 1.05fr 0.95fr;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  max-width: 770px;
  font-size: clamp(2.65rem, 5.8vw, 5.15rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-copy p {
  max-width: 680px;
  margin: 26px 0 30px;
  color: var(--body);
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: 180ms ease;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.2);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
}

.button-secondary {
  border-color: #cbd5e1;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.button-light {
  background: #fff;
  color: var(--blue);
}

.microcopy {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.microcopy::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.1);
  content: "";
}

.strategy-board {
  position: relative;
  min-height: 480px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #edf3ff);
  box-shadow: 0 36px 80px rgba(28, 53, 92, 0.16);
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 7px 19px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.board-dots {
  display: flex;
  gap: 5px;
}

.board-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
}

.board-main {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.15fr 0.85fr;
}

.panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(31, 51, 82, 0.06);
}

.chart-panel {
  min-height: 280px;
  padding: 22px;
}

.panel-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-title {
  margin: 8px 0 24px;
  font-size: 17px;
  font-weight: 800;
}

.chart {
  position: relative;
  height: 150px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: repeating-linear-gradient(to bottom, transparent 0 36px, #eef2f7 37px);
}

.chart svg {
  position: absolute;
  inset: 12px 0 0;
  width: 100%;
  height: 125px;
}

.metric-row {
  display: grid;
  margin-top: 18px;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.metric {
  padding: 12px;
  border-radius: 12px;
  background: var(--surface-soft);
}

.metric strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.metric span {
  color: var(--muted);
  font-size: 11px;
}

.side-stack {
  display: grid;
  gap: 14px;
}

.check-panel,
.message-panel {
  padding: 18px;
}

.mini-checks {
  display: grid;
  margin-top: 16px;
  gap: 11px;
}

.mini-check {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #374151;
  font-size: 12px;
  font-weight: 650;
}

.mini-check i {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 7px;
  background: var(--teal-soft);
  color: var(--teal);
  font-style: normal;
  font-size: 12px;
}

.message-panel {
  min-height: 106px;
  background: var(--blue);
  color: #fff;
}

.message-panel .panel-label {
  color: #bfdbfe;
}

.message-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 17px;
}

.floating-note {
  position: absolute;
  right: -24px;
  bottom: 30px;
  width: 190px;
  padding: 15px 17px;
  border: 1px solid #dbeafe;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
  color: #374151;
  font-size: 12px;
  font-weight: 650;
}

.floating-note b {
  display: block;
  margin-bottom: 3px;
  color: var(--teal);
}

.trust-strip {
  border-block: 1px solid var(--border);
  background: #fff;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip-item {
  padding: 28px 22px;
  border-right: 1px solid var(--border);
}

.trust-strip-item:last-child {
  border-right: 0;
}

.trust-strip-item strong {
  display: block;
  font-size: 14px;
}

.trust-strip-item span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-white {
  background: #fff;
}

.section-heading {
  display: grid;
  margin-bottom: 48px;
  align-items: end;
  gap: 30px;
  grid-template-columns: 1fr 0.75fr;
}

.section-heading p {
  margin: 0;
  color: var(--body);
  font-size: 17px;
}

.overview-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.15fr 0.85fr;
}

.feature-block {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.feature-block.blue {
  border: 0;
  background: var(--blue);
  color: #fff;
}

.feature-block p {
  margin: 18px 0 0;
  color: var(--body);
}

.feature-block.blue p {
  color: #dbeafe;
}

.fact-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.fact-list li {
  display: flex;
  gap: 11px;
}

.fact-list li::before {
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.service-grid,
.focus-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.focus-card,
.trust-card {
  position: relative;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: 180ms ease;
}

.service-card:hover,
.focus-card:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.08);
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
}

.icon-box svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card p,
.focus-card p,
.trust-card p {
  margin: 12px 0 0;
  color: var(--body);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.step {
  position: relative;
  padding: 34px;
  border-block: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: #fff;
}

.step:first-child {
  border-left: 1px solid var(--border);
  border-radius: 20px 0 0 20px;
}

.step:last-child {
  border-radius: 0 20px 20px 0;
}

.step-number {
  display: inline-grid;
  width: 35px;
  height: 35px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.step p {
  margin: 12px 0 0;
  color: var(--body);
  font-size: 14px;
}

.transparency-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.trust-card {
  padding-top: 54px;
}

.trust-card::before {
  position: absolute;
  top: 28px;
  left: 29px;
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--teal);
  content: "";
}

.checklist-wrap {
  display: grid;
  align-items: center;
  gap: 56px;
  grid-template-columns: 0.8fr 1.2fr;
}

.checklist-copy p {
  color: var(--body);
}

.checklist-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.checklist-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.checklist-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: #374151;
  font-size: 14px;
}

.checklist-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.checklist-card li::before {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 7px;
  background: var(--teal-soft);
  color: var(--teal);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.focus-card {
  min-height: 190px;
}

.focus-card:nth-child(2),
.focus-card:nth-child(5) {
  background: var(--blue-soft);
}

.focus-card:nth-child(3),
.focus-card:nth-child(6) {
  background: var(--teal-soft);
}

.focus-index {
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.responsible {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  grid-template-columns: 0.7fr 1.3fr;
}

.responsible-mark {
  display: grid;
  min-height: 360px;
  place-items: center;
  background:
    radial-gradient(circle, rgba(255,255,255,.18) 0 2px, transparent 3px) 0 0/22px 22px,
    linear-gradient(145deg, var(--blue), var(--teal));
}

.responsible-mark span {
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  font-size: 55px;
}

.responsible-copy {
  padding: 58px;
}

.responsible-copy p {
  max-width: 690px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 18px;
}

.cta-block {
  display: grid;
  padding: 58px;
  align-items: center;
  gap: 30px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0, rgba(255,255,255,.16), transparent 32%),
    var(--blue);
  color: #fff;
  grid-template-columns: 1fr auto;
}

.cta-block h2 {
  max-width: 760px;
}

.cta-block p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #dbeafe;
}

.page-hero {
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 75% 0, rgba(29,78,216,.12), transparent 36%),
    #fff;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--body);
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

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

.content-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) 290px;
}

.prose {
  max-width: 800px;
}

.prose h2 {
  margin: 54px 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 32px 0 12px;
}

.prose p,
.prose li {
  color: var(--body);
}

.prose ul {
  padding-left: 20px;
}

.prose a {
  color: var(--blue);
}

.side-card {
  position: sticky;
  top: 105px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.side-card h2 {
  font-size: 18px;
}

.side-card p,
.side-card address {
  margin: 12px 0 0;
  color: var(--body);
  font-size: 14px;
  font-style: normal;
}

.side-card .button {
  width: 100%;
  margin-top: 20px;
}

.service-detail-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.service-detail {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.service-detail p {
  color: var(--body);
}

.service-detail dl {
  margin: 24px 0 0;
}

.service-detail dt {
  margin-top: 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.service-detail dd {
  margin: 4px 0 0;
  color: var(--body);
  font-size: 14px;
}

.notice {
  padding: 24px;
  border-left: 4px solid var(--amber);
  border-radius: 0 14px 14px 0;
  background: #fffbeb;
  color: #713f12;
}

.contact-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-details,
.contact-form {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.contact-details address {
  margin-top: 22px;
  color: var(--body);
  font-style: normal;
}

.contact-line {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.contact-line strong {
  display: block;
  margin-top: 3px;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: #374151;
  font-size: 13px;
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}

.field input,
.field select {
  min-height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(29,78,216,.1);
}

.form-note,
.form-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  display: none;
  padding: 12px;
  border-radius: 10px;
  background: #fffbeb;
  color: #713f12;
}

.form-status.visible {
  display: block;
}

.legal-meta {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  padding: 72px 0 28px;
  background: #0b1220;
  color: #e5e7eb;
}

.footer-grid {
  display: grid;
  gap: 52px;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0;
  color: #9ca3af;
  font-size: 14px;
}

.footer-address {
  color: #cbd5e1;
  font-size: 13px;
  font-style: normal;
}

.footer-column h2 {
  margin-bottom: 17px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 10px 0;
  color: #9ca3af;
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  margin-top: 55px;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #1f2937;
  color: #6b7280;
  font-size: 12px;
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid,
  .section-heading,
  .checklist-wrap,
  .contact-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

  .strategy-board {
    max-width: 680px;
    margin-inline: auto;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-item:nth-child(2) {
    border-right: 0;
  }

  .trust-strip-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .service-grid,
  .focus-grid,
  .transparency-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .side-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero,
  .page-hero {
    padding: 60px 0;
  }

  .section {
    padding: 76px 0;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 16px;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .board-main,
  .overview-grid,
  .service-grid,
  .focus-grid,
  .transparency-grid,
  .service-detail-grid,
  .form-grid,
  .responsible,
  .cta-block,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .strategy-board {
    min-height: 0;
    padding: 14px;
    border-radius: 22px;
  }

  .floating-note {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step,
  .step:first-child,
  .step:last-child {
    border: 1px solid var(--border);
    border-bottom: 0;
    border-radius: 0;
  }

  .step:first-child {
    border-radius: 18px 18px 0 0;
  }

  .step:last-child {
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 18px 18px;
  }

  .feature-block,
  .responsible-copy,
  .cta-block,
  .contact-details,
  .contact-form {
    padding: 29px;
  }

  .responsible-mark {
    min-height: 230px;
  }

  .cta-block .button {
    width: 100%;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Retro / 90s theme */
:root {
  --ink: #000000;
  --body: #202020;
  --muted: #606060;
  --blue: #000080;
  --blue-dark: #00005a;
  --blue-soft: #d9e8ff;
  --teal: #008080;
  --teal-soft: #d8ffff;
  --amber: #ffff00;
  --canvas: #c0c0c0;
  --surface: #ffffff;
  --surface-soft: #e8e8e8;
  --border: #808080;
  --max: 1100px;
  --radius-sm: 0;
  --radius: 0;
  --radius-lg: 0;
  --shadow: inset -1px -1px 0 #404040, inset 1px 1px 0 #dfdfdf;
}

html {
  scroll-behavior: auto;
}

body {
  background-color: #c0c0c0;
  background-image:
    linear-gradient(45deg, #b8b8b8 25%, transparent 25%),
    linear-gradient(-45deg, #b8b8b8 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #b8b8b8 75%),
    linear-gradient(-45deg, transparent 75%, #b8b8b8 75%);
  background-position: 0 0, 0 2px, 2px -2px, -2px 0;
  background-size: 4px 4px;
  color: #000;
  font-family: "MS Sans Serif", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.55;
}

body::before {
  display: none;
}

* {
  border-radius: 0 !important;
}

::selection {
  background: #000080;
  color: #fff;
}

a:not(.button):not(.brand):not(.nav-cta) {
  color: #0000ff;
  text-decoration: underline;
}

a:not(.button):not(.brand):not(.nav-cta):visited {
  color: #800080;
}

a:not(.button):not(.brand):not(.nav-cta):hover {
  color: #ff0000;
}

:focus-visible {
  outline: 2px dotted #000;
  outline-offset: 2px;
}

.skip-link,
.site-header,
.menu-toggle,
.strategy-board,
.panel,
.floating-note,
.feature-block,
.service-card,
.focus-card,
.trust-card,
.step,
.checklist-card,
.responsible,
.cta-block,
.side-card,
.service-detail,
.contact-details,
.contact-form,
.field input,
.field textarea,
.field select,
.form-status,
.legal-meta,
.brand-mark,
.button,
.nav-links,
.nav-links a,
.nav-cta,
.icon-box,
.metric,
.mini-check i,
.step-number,
.responsible-mark span {
  border-radius: 0;
}

.site-header {
  border: 0;
  border-bottom: 2px solid;
  border-color: #fff #808080 #808080 #fff;
  background: #c0c0c0;
  backdrop-filter: none;
  box-shadow: inset 0 -1px 0 #404040;
}

.nav-wrap {
  min-height: 68px;
}

.brand {
  color: #000;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 2px solid;
  border-color: #5555ff #000040 #000040 #5555ff;
  background: #000080;
  box-shadow: inset -1px -1px 0 #000040, inset 1px 1px 0 #1084d0;
  color: #fff;
  font-family: "Courier New", monospace;
}

.nav-links {
  gap: 4px;
}

.nav-links a {
  min-height: 38px;
  padding: 8px 11px;
  border: 2px solid transparent;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: #808080 #fff #fff #808080;
  background: #d8d8d8;
  box-shadow: inset 1px 1px 0 #404040, inset -1px -1px 0 #dfdfdf;
  color: #000;
}

.nav-cta,
.nav-cta:hover {
  border: 2px solid;
  border-color: #5555ff #000040 #000040 #5555ff;
  background: #000080 !important;
  box-shadow: inset -1px -1px 0 #000040, inset 1px 1px 0 #1084d0;
  color: #fff !important;
}

.nav-cta:active,
.button:active,
.menu-toggle:active {
  transform: translate(1px, 1px);
  border-color: #808080 #fff #fff #808080;
  box-shadow: inset 1px 1px 0 #404040, inset -1px -1px 0 #dfdfdf;
}

.menu-toggle {
  border: 2px solid;
  border-color: #fff #808080 #808080 #fff;
  background: #c0c0c0;
  box-shadow: inset -1px -1px 0 #404040, inset 1px 1px 0 #dfdfdf;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  border-radius: 0;
  background: #000;
  transition: none;
}

.hero,
.page-hero {
  border-bottom: 4px solid;
  border-color: #808080 #fff #fff #808080;
  background: #c0c0c0;
}

.hero {
  padding: 60px 0;
}

.hero-grid {
  gap: 40px;
}

.eyebrow {
  margin-bottom: 16px;
  padding: 4px 7px;
  border: 2px solid;
  border-color: #fff #808080 #808080 #fff;
  background: #ffff00;
  color: #000;
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  border-radius: 0;
  background: #ff0000;
}

h1,
h2,
h3 {
  color: #000;
  font-family: "Arial Black", Impact, Haettenschweiler, sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5.7vw, 4.9rem);
  line-height: 1.03;
  text-shadow: 3px 3px 0 #fff, 5px 5px 0 #808080;
}

h2 {
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  text-shadow: 2px 2px 0 #fff;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: 0;
}

.hero-copy p,
.page-hero p,
.section-heading p,
.feature-block p,
.service-card p,
.focus-card p,
.trust-card p,
.step p,
.checklist-copy p,
.service-detail p,
.service-detail dd,
.side-card p,
.side-card address,
.prose p,
.prose li,
.contact-details address {
  color: #202020;
}

.button {
  min-height: 46px;
  padding: 8px 18px;
  border: 2px solid;
  border-color: #fff #808080 #808080 #fff;
  background: #c0c0c0;
  box-shadow: inset -1px -1px 0 #404040, inset 1px 1px 0 #dfdfdf;
  color: #000;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: none;
}

.button-primary {
  border-color: #5555ff #000040 #000040 #5555ff;
  background: #0000aa;
  box-shadow: inset -1px -1px 0 #000040, inset 1px 1px 0 #5555ff;
  color: #fff;
}

.button-primary:hover {
  transform: none;
  background: #0000ff;
}

.button-secondary,
.button-light {
  border-color: #fff #808080 #808080 #fff;
  background: #f0f0f0;
  color: #000;
}

.button-secondary:hover,
.button-light:hover {
  border-color: #fff #808080 #808080 #fff;
  background: #fff;
  color: #000;
}

.microcopy {
  display: inline-flex;
  padding: 5px 8px;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  background: #fff;
  color: #000;
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.microcopy::before {
  width: 8px;
  height: 8px;
  border: 1px solid #006600;
  border-radius: 0;
  background: #00ff00;
  box-shadow: none;
}

.strategy-board {
  min-height: 450px;
  padding: 4px;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  background: #c0c0c0;
  box-shadow: inset -1px -1px 0 #808080, inset 1px 1px 0 #dfdfdf;
}

.board-top {
  min-height: 34px;
  padding: 7px 9px;
  background: linear-gradient(to right, #000080, #1084d0);
  color: #fff;
  font-weight: 800;
}

.board-dots i {
  width: 14px;
  height: 14px;
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  border-radius: 0;
  background: #c0c0c0;
}

.board-main {
  gap: 4px;
  padding-top: 4px;
}

.panel {
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  background: #fff;
  box-shadow: inset 1px 1px 0 #404040, inset -1px -1px 0 #dfdfdf;
}

.panel-label {
  color: #000080;
  font-family: "Courier New", monospace;
}

.chart {
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  background: repeating-linear-gradient(to bottom, #fff 0 35px, #c0c0c0 36px, #c0c0c0 37px);
}

.metric {
  border: 1px solid #808080;
  background: #e8e8e8;
}

.mini-check {
  color: #000;
}

.mini-check i {
  border: 1px solid #006600;
  background: #00aa00;
  color: #fff;
}

.message-panel {
  background: #000080;
  color: #fff;
}

.message-panel .panel-label {
  color: #ffff00;
}

.floating-note {
  right: -12px;
  bottom: 24px;
  border: 2px solid;
  border-color: #fff #808080 #808080 #fff;
  background: #ffffcc;
  box-shadow: inset -1px -1px 0 #404040, inset 1px 1px 0 #dfdfdf;
  color: #000;
}

.floating-note b {
  color: #800000;
}

.trust-strip {
  border-block: 4px solid;
  border-color: #fff #808080 #808080 #fff;
  background: #e8e8e8;
}

.trust-strip-item {
  border-right: 2px solid #808080;
}

.trust-strip-item:nth-child(even) {
  background: #fff;
}

.trust-strip-item span {
  color: #404040;
}

.section {
  padding: 68px 0;
  border-bottom: 4px solid;
  border-color: #808080 #fff #fff #808080;
}

.section-soft {
  background: #c0c0c0;
}

.section-white {
  background: #e8e8e8;
}

.section-heading {
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 4px solid;
  border-image: linear-gradient(to bottom, #808080 0 50%, #fff 50% 100%) 1;
}

.feature-block,
.service-card,
.focus-card,
.trust-card,
.checklist-card,
.side-card,
.service-detail,
.contact-details,
.contact-form {
  border: 2px solid;
  border-color: #fff #808080 #808080 #fff;
  background: #c0c0c0;
  box-shadow: inset -1px -1px 0 #404040, inset 1px 1px 0 #dfdfdf;
}

.feature-block,
.service-card,
.focus-card,
.trust-card,
.service-detail {
  padding: 30px;
}

.feature-block.blue {
  border: 2px solid;
  border-color: #5555ff #000040 #000040 #5555ff;
  background: #000080;
  color: #fff;
  box-shadow: inset -1px -1px 0 #000040, inset 1px 1px 0 #1084d0;
}

.feature-block.blue h3 {
  color: #fff;
  text-shadow: 2px 2px 0 #000;
}

.feature-block.blue .eyebrow,
.responsible-copy .eyebrow {
  color: #000 !important;
}

.feature-block.blue p {
  color: #fff;
}

.fact-list li::before {
  color: #008000;
}

.service-grid,
.focus-grid,
.transparency-grid {
  gap: 8px;
}

.service-card,
.focus-card,
.trust-card {
  transition: none;
}

.service-card:hover,
.focus-card:hover {
  transform: none;
  border-color: #808080 #fff #fff #808080;
  box-shadow: inset 1px 1px 0 #404040, inset -1px -1px 0 #dfdfdf;
}

.service-card h3,
.focus-card h3,
.trust-card h3,
.service-detail h2,
.side-card h2,
.contact-details h2,
.contact-form h2 {
  margin: -18px -18px 18px;
  padding: 7px 9px;
  background: linear-gradient(to right, #000080, #1084d0);
  color: #fff;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  font-size: 15px !important;
  line-height: 1.25;
  text-shadow: none;
}

.service-detail h2,
.side-card h2,
.contact-details h2,
.contact-form h2 {
  margin: -18px -18px 22px !important;
}

.icon-box {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 2px solid;
  border-color: #fff #004040 #004040 #fff;
  background: #008080;
  color: #fff;
  box-shadow: inset -1px -1px 0 #004040, inset 1px 1px 0 #00ffff;
}

.text-link {
  color: #0000ff;
  text-decoration: underline;
}

.steps {
  gap: 4px;
}

.step,
.step:first-child,
.step:last-child {
  border: 2px solid;
  border-color: #fff #808080 #808080 #fff;
  border-radius: 0;
  background: #c0c0c0;
  box-shadow: inset -1px -1px 0 #404040, inset 1px 1px 0 #dfdfdf;
}

.step-number {
  border: 2px solid;
  border-color: #5555ff #000040 #000040 #5555ff;
  background: #000080;
  box-shadow: inset -1px -1px 0 #000040, inset 1px 1px 0 #1084d0;
  font-family: "Courier New", monospace;
}

.trust-card {
  padding-top: 52px;
}

.trust-card::before {
  top: 28px;
  left: 30px;
  width: 26px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 0;
  background: #00ff00;
}

.checklist-card {
  background: #ffffcc;
}

.checklist-card li {
  border-bottom: 2px groove #fff;
  color: #000;
}

.checklist-card li::before {
  border: 1px solid #006600;
  border-radius: 0;
  background: #00aa00;
  color: #fff;
}

.focus-card,
.focus-card:nth-child(2),
.focus-card:nth-child(3),
.focus-card:nth-child(5),
.focus-card:nth-child(6) {
  background: #c0c0c0;
}

.focus-card:nth-child(even) {
  background: #fff;
}

.focus-index {
  display: inline-block;
  margin-bottom: 20px;
  padding: 3px 6px;
  border: 1px solid #000;
  background: #ffff00;
  color: #000;
  font-family: "Courier New", monospace;
}

.responsible {
  border: 2px solid;
  border-color: #fff #404040 #404040 #fff;
  background: #c0c0c0;
  box-shadow: inset -1px -1px 0 #808080, inset 1px 1px 0 #dfdfdf;
  color: #000;
}

.responsible-mark {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.18) 10px, rgba(255,255,255,.18) 20px),
    #008080;
}

.responsible-mark span {
  border: 4px double #fff;
  background: #000080;
  color: #00ff00;
  font-family: "Courier New", monospace;
}

.responsible-copy {
  padding: 44px;
}

.responsible-copy h2 {
  color: #000;
}

.responsible-copy p {
  color: #202020;
}

.cta-block {
  padding: 12px;
  border: 10px solid transparent;
  border-image: repeating-linear-gradient(45deg, #ffff00 0 10px, #000 10px 20px) 10;
  background: #ffffcc;
  color: #000;
}

.cta-block > div {
  padding: 28px;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  background: #fff;
}

.cta-block h2 {
  color: #000;
}

.cta-block p {
  color: #202020;
}

.page-hero {
  padding: 55px 0 48px;
  background: #e8e8e8;
}

.breadcrumb {
  color: #404040;
  font-family: "Courier New", monospace;
}

.breadcrumb a,
.prose a {
  color: #0000ff;
  text-decoration: underline;
}

.prose h2 {
  padding: 7px 9px;
  border: 2px solid;
  border-color: #5555ff #000040 #000040 #5555ff;
  background: linear-gradient(to right, #000080, #1084d0);
  color: #fff;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  font-size: 18px;
  text-shadow: none;
}

.prose h3 {
  border-bottom: 2px groove #fff;
}

.side-card {
  padding: 22px;
  background: #ffffcc;
}

.service-detail-grid {
  gap: 8px;
}

.service-detail dt {
  color: #000080;
  font-family: "Courier New", monospace;
  text-decoration: underline;
}

.notice {
  padding: 22px;
  border: 4px double #000;
  border-radius: 0;
  background: #ffff00;
  color: #000;
  font-family: "Courier New", monospace;
}

.contact-grid {
  gap: 8px;
}

.contact-line {
  border-bottom: 2px groove #fff;
}

.contact-line small,
.field label {
  color: #000;
  font-family: "Courier New", monospace;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  background: #fff;
  box-shadow: inset 1px 1px 0 #404040, inset -1px -1px 0 #dfdfdf;
  color: #000;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #808080 #fff #fff #808080;
  outline: 2px dotted #000;
  outline-offset: 2px;
}

.form-note {
  color: #404040;
  font-family: "Courier New", monospace;
}

.form-status {
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  background: #ffffcc;
  color: #800000;
}

.legal-meta {
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  background: #fff;
  color: #000;
  font-family: "Courier New", monospace;
}

.site-footer {
  padding: 48px 0 24px;
  border-top: 4px solid;
  border-color: #fff #808080 #808080 #fff;
  background: #000080;
  color: #fff;
}

.footer-grid {
  gap: 30px;
}

.footer-brand p,
.footer-address,
.footer-bottom {
  color: #fff;
}

.footer-column {
  padding: 12px;
  border: 2px solid;
  border-color: #5555ff #000040 #000040 #5555ff;
  background: #000060;
}

.footer-column h2 {
  margin: -8px -8px 14px;
  padding: 5px 7px;
  background: #c0c0c0;
  color: #000;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
}

.footer-column a {
  color: #ffff00;
  text-decoration: underline;
}

.footer-column a:visited {
  color: #00ffff;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 4px double #fff;
  font-family: "Courier New", monospace;
}

@media (max-width: 980px) {
  .nav-links {
    top: 68px;
    padding: 6px;
    border: 2px solid;
    border-color: #fff #404040 #404040 #fff;
    background: #c0c0c0;
    box-shadow: inset -1px -1px 0 #808080, inset 1px 1px 0 #dfdfdf;
  }
}

@media (max-width: 700px) {
  .hero,
  .page-hero {
    padding: 42px 0;
  }

  .section {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
    text-shadow: 2px 2px 0 #fff, 4px 4px 0 #808080;
  }

  .strategy-board {
    padding: 4px;
  }

  .step,
  .step:first-child,
  .step:last-child {
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
  }

  .feature-block,
  .responsible-copy,
  .cta-block,
  .contact-details,
  .contact-form {
    padding: 22px;
  }

  .cta-block > div {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
