:root {
  --teal: #00b098;
  --teal-deep: #078a78;
  --magenta: #f04078;
  --ink: #1b1e22;
  --slate: #585858;
  --muted: #6d7278;
  --line: #e6e8eb;
  --paper: #f6f7f8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(27, 30, 34, 0.08);
  --radius: 18px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

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

.topbar {
  background: var(--ink);
  color: #d7dbdf;
  font-size: 14px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}
.topbar a:hover { color: var(--teal); }
.topbar span { opacity: 0.85; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}
.brand img { height: 46px; width: auto; }
.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu a {
  color: var(--slate);
  font-weight: 600;
  font-size: 16px;
}
.menu a.active, .menu a:hover { color: var(--teal-deep); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--teal-deep); }
.btn-magenta { background: var(--magenta); color: white; }
.btn-magenta:hover { filter: brightness(0.95); }
.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-line {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-line:hover { border-color: var(--teal); color: var(--teal-deep); }

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  color: white;
  background:
    linear-gradient(100deg, rgba(16, 20, 24, 0.88) 0%, rgba(16, 20, 24, 0.55) 52%, rgba(16, 20, 24, 0.25) 100%),
    url("/images/hero-servers.jpg") center/cover no-repeat;
}
.hero-inner { padding: 88px 0 72px; max-width: 760px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}
.hero h1, .page-hero h1, h2, h3 {
  font-family: Outfit, "Source Sans 3", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
}
.hero h1 { font-size: clamp(40px, 5vw, 64px); margin: 14px 0 16px; }
.lede { font-size: 20px; color: #e7ebef; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.code-line {
  margin-top: 28px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 15px;
  color: #c9d0d6;
}
.code-line .kw { color: var(--magenta); }
.code-line .ok { color: var(--teal); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: -42px;
  position: relative;
  box-shadow: var(--shadow);
}
.stat { padding: 26px 28px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 34px;
  color: var(--teal-deep);
}
.stat span { color: var(--muted); }

section { padding: 84px 0; }
.section-head { max-width: 680px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 12px; }
.section-head p, .muted { color: var(--muted); }
.paper { background: var(--paper); }

.grid-3, .grid-2 { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.1fr 0.9fr; align-items: center; }

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
}
.card h3 { font-size: 22px; margin-bottom: 8px; }
.card p { margin: 0; color: var(--slate); }
.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 176, 152, 0.12);
  color: var(--teal-deep);
  font-weight: 800;
  margin-bottom: 16px;
  font-family: "IBM Plex Mono", monospace;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.photo {
  border-radius: 24px;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.checks { list-style: none; padding: 0; margin: 18px 0 0; }
.checks li { padding: 8px 0 8px 28px; position: relative; }
.checks li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 0;
  top: 16px;
}

.steps { counter-reset: step; display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  background: white;
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1px solid var(--line);
}
.step b {
  font-family: Outfit, sans-serif;
  font-size: 28px;
  color: var(--magenta);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
th, td { text-align: left; padding: 16px 18px; vertical-align: top; }
th { background: var(--ink); color: white; font-weight: 600; }
tr + tr td { border-top: 1px solid var(--line); }
td:first-child { font-weight: 700; width: 28%; color: var(--ink); }

.band {
  background:
    linear-gradient(110deg, rgba(27,30,34,0.92), rgba(7, 90, 80, 0.82)),
    url("/images/network.jpg") center/cover;
  color: white;
  border-radius: 28px;
  padding: 48px;
}
.band h2 { font-size: 40px; margin-bottom: 10px; }
.band p { color: #e4e8eb; max-width: 640px; }

.page-hero {
  background:
    linear-gradient(100deg, rgba(27,30,34,0.9), rgba(27,30,34,0.45)),
    var(--hero, url("/images/office.jpg")) center/cover;
  color: white;
  padding: 78px 0 64px;
}
.page-hero p { max-width: 640px; color: #e7ebef; }

.form {
  display: grid;
  gap: 14px;
}
label { display: grid; gap: 6px; font-weight: 600; font-size: 15px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: white;
  color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
.alert {
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff1f5;
  color: #9d2048;
  border: 1px solid #ffd0de;
}
.success {
  background: #eefbf8;
  color: #086455;
  border: 1px solid #b7efe4;
}

.contact-card { display: grid; gap: 16px; }
.contact-card a { color: var(--teal-deep); font-weight: 700; }

footer {
  background: var(--ink);
  color: #c9cfd4;
  padding: 48px 0 24px;
}
.foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
footer h3 { color: white; font-size: 18px; margin-bottom: 10px; }
footer a:hover { color: var(--teal); }
.legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.mono { font-family: "IBM Plex Mono", monospace; color: #9aa3aa; font-size: 13px; }

@media (max-width: 900px) {
  .grid-3, .grid-2, .split, .foot, .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .menu-toggle { display: block; }
  .menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 22px 22px;
    border-bottom: 1px solid var(--line);
  }
  .menu.open { display: flex; }
  .topbar .wrap { flex-direction: column; }
  .band { padding: 28px; }
  td:first-child { width: auto; }
  .legal { flex-direction: column; }
}
