:root {
  --ink: #17202a;
  --muted: #5d6a75;
  --navy: #12324a;
  --navy-deep: #071d2a;
  --teal: #006c67;
  --teal-soft: #e4f2f0;
  --gold: #b2772b;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --line: #d8e1e6;
  --shadow: 0 18px 45px rgba(18, 50, 74, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

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

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

a:hover {
  color: var(--teal);
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

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

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
}

.brand img {
  width: 248px;
  height: auto;
  display: block;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a,
.language-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: .92rem;
  font-weight: 650;
  color: #243241;
}

.main-nav a.active,
.main-nav a:hover,
.language-switch a.active,
.language-switch a:hover {
  background: var(--teal-soft);
  color: var(--teal);
}

.language-switch {
  display: flex;
  gap: 4px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 29, 42, .92) 0%, rgba(7, 29, 42, .76) 44%, rgba(7, 29, 42, .26) 100%),
    url("industrial-network.svg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, .2);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding: 70px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: #f1c17e;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 800;
}

.hero p {
  max-width: 680px;
  margin-top: 22px;
  color: #e3ecef;
  font-size: clamp(1.05rem, 1.7vw, 1.26rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, .44);
  color: #fff;
}

.button.neutral {
  border-color: var(--line);
  color: var(--navy);
  background: #fff;
}

.button:hover {
  transform: translateY(-1px);
  color: #fff;
}

.button.neutral:hover {
  color: var(--teal);
}

.section {
  padding: 78px 0;
}

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

.section.navy {
  color: #fff;
  background: var(--navy);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.navy .section-head p,
.navy p,
.navy .muted {
  color: #cddbe0;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.info-panel,
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card {
  padding: 24px;
}

.card.compact {
  padding: 20px;
  box-shadow: none;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p,
.card li,
.legal-table td {
  color: var(--muted);
}

.icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal);
}

.icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: start;
}

.info-panel {
  padding: 26px;
  min-width: 0;
}

.snapshot {
  margin: 0;
  padding: 0;
  list-style: none;
}

.snapshot li {
  display: grid;
  grid-template-columns: minmax(118px, .42fr) minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.snapshot li:last-child {
  border-bottom: 0;
}

.snapshot strong {
  color: var(--navy);
}

.snapshot span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.page-hero {
  padding: 86px 0 74px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(7, 29, 42, .98), rgba(7, 29, 42, .78)),
    url("industrial-network.svg");
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
}

.page-hero p {
  max-width: 770px;
  margin-top: 18px;
  color: #dce8ec;
  font-size: 1.15rem;
}

.content {
  max-width: 880px;
}

.content h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 1.85rem;
}

.content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.content ul,
.card ul {
  padding-left: 1.15rem;
}

.content li,
.card li {
  margin: 8px 0;
}

.callout {
  margin-top: 32px;
  padding: 26px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
}

.callout p {
  color: #dce8ec;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-table th,
.legal-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.legal-table th {
  width: 230px;
  color: var(--navy);
  background: var(--soft);
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: 0;
}

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

.document-slot {
  min-height: 118px;
  padding: 18px;
  border: 1px dashed #aebdc5;
  border-radius: 8px;
  background: #fff;
}

.document-slot strong {
  display: block;
  color: var(--navy);
}

.document-slot span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .93rem;
}

.form-panel {
  padding: 28px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

label {
  color: var(--navy);
  font-size: .92rem;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd7dd;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(0, 108, 103, .18);
  border-color: var(--teal);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: .94rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-message {
  min-height: 24px;
  margin-top: 14px;
  color: #9b3f2b;
  font-weight: 650;
}

.site-footer {
  padding: 54px 0 30px;
  color: #dce8ec;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand img {
  width: 248px;
  padding: 8px;
  border-radius: 6px;
  background: #fff;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1rem;
}

.site-footer p,
.site-footer li {
  margin: 0 0 8px;
  color: #b9cbd2;
  font-size: .94rem;
  overflow-wrap: anywhere;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #9fb3bc;
  font-size: .9rem;
}

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

  .brand {
    min-width: 220px;
  }

  .brand img {
    width: 220px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding-top: 10px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    justify-content: flex-start;
  }

  .language-switch {
    margin-left: 0;
  }

  .grid.three,
  .grid.four,
  .split,
  .footer-grid,
  .document-slots {
    grid-template-columns: 1fr 1fr;
  }

  .split {
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 52px 0;
  }

  .section {
    padding: 56px 0;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .split,
  .footer-grid,
  .document-slots,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .snapshot li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table th {
    border-bottom: 0;
  }

  .legal-table td {
    border-bottom: 1px solid var(--line);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
