:root {
  --ink: #111827;
  --muted: #526173;
  --panel: #ffffff;
  --soft: #f5f7fa;
  --line: #d6dee8;
  --teal: #006f73;
  --blue: #285ea8;
  --green: #1f7a4f;
  --amber: #9a6700;
  --red: #b3362d;
  --shadow: 0 18px 42px rgba(22, 39, 63, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: #f8fafc;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

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

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

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 240px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.header-link,
.button {
  text-decoration: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.language-toggle button {
  min-height: 36px;
  padding: 7px 10px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.language-toggle button.active {
  color: #fff;
  background: var(--ink);
}

.header-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-link {
  color: var(--blue);
  background: #fff;
  white-space: nowrap;
}

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

.button.secondary {
  color: var(--ink);
  background: #fff;
}

.button:hover,
.header-link:hover {
  transform: translateY(-1px);
  border-color: #a8b8c9;
}

.section-band {
  padding: 64px 0;
  border-top: 1px solid rgba(214, 222, 232, 0.72);
}

.hero {
  padding: 58px 0 64px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 56px;
  align-items: center;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.25;
}

.lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: #344154;
  font-size: 20px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-facts {
  padding: 8px 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.fact-row:last-child {
  border-bottom: 0;
}

.fact-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.fact-row strong {
  max-width: 220px;
  text-align: right;
}

.split-layout,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: start;
}

.split-layout p,
.two-column p,
.section-heading p,
.decision-strip p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
}

.scope-list {
  display: grid;
  gap: 18px;
}

.scope-list div {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.scope-list div:last-child {
  border-bottom: 0;
}

.scope-list strong,
.scope-list span {
  display: block;
}

.scope-list strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.scope-list span {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.decision-strip {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--amber);
  border-radius: var(--radius);
}

.decision-main span,
.decision-main strong {
  display: block;
}

.decision-main span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.decision-main strong {
  color: var(--amber);
  font-size: 26px;
  line-height: 1.1;
}

.decision-strip p {
  margin-bottom: 0;
}

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

.status-panel,
.plain-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.status-panel {
  padding: 22px;
}

.status-panel.ready {
  border-top: 5px solid var(--green);
}

.status-panel.partial {
  border-top: 5px solid var(--amber);
}

.status-panel.blocked {
  border-top: 5px solid var(--red);
}

.status-panel ul,
.plain-panel ul,
.not-fit-list,
.request-list {
  margin: 0;
  padding-left: 20px;
}

.status-panel li,
.plain-panel li,
.not-fit-list li,
.request-list li {
  margin: 9px 0;
}

.boundary-lists {
  display: grid;
  gap: 18px;
}

.plain-panel {
  padding: 22px;
}

.ok-panel h3 {
  color: var(--green);
}

.stop-panel h3 {
  color: var(--red);
}

.mapping {
  background: #fff;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  color: #344154;
  background: #eef3f7;
  font-size: 13px;
  text-transform: uppercase;
}

td {
  font-size: 14px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status.ready {
  color: var(--green);
  background: #e9f6ef;
}

.status.partial {
  color: var(--amber);
  background: #fff4d8;
}

.status.blocked {
  color: var(--red);
  background: #fdecea;
}

.request-list {
  color: #344154;
  font-size: 17px;
}

.not-fit-list {
  color: #344154;
  font-size: 17px;
}

.final-cta {
  padding: 54px 0;
  color: #fff;
  background: var(--ink);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.final-cta h2 {
  margin-bottom: 10px;
}

.final-cta p {
  max-width: 690px;
  margin-bottom: 0;
  color: #d7dee8;
}

.final-cta .button.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-grid,
  .split-layout,
  .two-column,
  .decision-strip,
  .status-columns {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .decision-strip {
    gap: 12px;
  }

  .fact-row strong {
    max-width: 55%;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .header-link {
    width: 100%;
  }

  .header-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .language-toggle {
    width: 100%;
  }

  .language-toggle button {
    flex: 1;
  }

  .nav-links {
    gap: 16px;
    font-size: 13px;
  }

  .hero {
    padding: 42px 0 46px;
  }

  .section-band {
    padding: 46px 0;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .service-facts,
  .decision-strip,
  .status-panel,
  .plain-panel,
  .table-wrap {
    border-radius: 8px;
  }

  .fact-row {
    display: block;
  }

  .fact-row strong {
    display: block;
    max-width: none;
    margin-top: 4px;
    text-align: left;
  }

  th,
  td {
    padding: 12px;
  }
}
