:root {
  --ink: #0d1b2a;
  --muted: #5b6674;
  --line: #dfe5ec;
  --surface: #ffffff;
  --soft: #f4f8fb;
  --brand: #0b5f96;
  --brand-dark: #083d63;
  --accent: #20a4b8;
  --signal: #f2b705;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(13, 27, 42, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 236, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: min(286px, 58vw);
  height: auto;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 650;
}

.primary-nav a {
  text-decoration: none;
  color: #172638;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--brand);
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff !important;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: stretch;
  background: #061727;
  color: #fff;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  min-height: calc(100vh - 78px);
}

.hero-content {
  max-width: 650px;
  align-self: center;
  justify-self: end;
  padding: 72px 48px 72px 24px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--signal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 580px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.1;
}

.button.primary {
  background: var(--accent);
  color: #021018;
}

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

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

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

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #061727 0%, rgba(6, 23, 39, 0.35) 42%, rgba(6, 23, 39, 0) 74%);
}

.status-panel {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  width: min(360px, calc(100% - 56px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(5, 19, 33, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.status-panel strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.status-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.section {
  padding: 88px 24px;
}

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

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

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

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

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

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.dark .section-heading p,
.dark p {
  color: rgba(255, 255, 255, 0.74);
}

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

.service-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 27, 44, 0.06);
  transform: translateY(0) scale(1);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 122, 204, 0.14), rgba(20, 184, 166, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card.featured {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.service-card img {
  width: 100%;
  height: 128px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 260ms ease, filter 260ms ease;
}

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

.service-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.77);
}

.service-card:hover,
.service-card:focus-within {
  z-index: 1;
  border-color: rgba(0, 122, 204, 0.32);
  box-shadow: 0 24px 52px rgba(10, 27, 44, 0.16);
  transform: translateY(-10px) scale(1.015);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
}

.service-card:hover img,
.service-card:focus-within img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.service-link {
  margin-top: auto;
  color: var(--brand);
  font-weight: 750;
  text-decoration: none;
}

.large-link {
  display: inline-flex;
  margin-top: 24px;
}

.featured .service-link {
  color: var(--signal);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 54px;
  align-items: center;
}

.split-media {
  min-height: 470px;
  border-radius: 8px;
  overflow: hidden;
}

.split-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.illustration-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.illustration-media img {
  height: auto;
  max-height: 420px;
  object-fit: contain;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px #d9f4f7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.metric {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
}

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

.process-step {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--brand);
  font-weight: 850;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
}

.cta-band p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 86px 24px 72px;
  background: var(--ink);
  color: #fff;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.15rem;
}

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

.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-card-heading {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.detail-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 95, 150, 0.18);
  border-radius: 8px;
  background: #edf7fb;
  color: var(--brand);
}

.detail-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-icon.data-icon {
  background: #edf7fb;
  color: #0b5f96;
}

.detail-icon.network-icon {
  background: #eef9f6;
  color: #117a65;
}

.detail-icon.cabling-icon {
  background: #fff8df;
  color: #9b6a00;
}

.detail-icon.voip-icon {
  background: #eff4ff;
  color: #315aa8;
}

.detail-icon.security-icon {
  background: #fff1ed;
  color: #b2452d;
}

.detail-icon.server-icon {
  background: #f4f3ff;
  color: #5b4aa0;
}

.detail-icon.helpdesk-icon {
  background: #eef7ff;
  color: #196f9f;
}

.detail-card h2 {
  margin-bottom: 0;
  font-size: 1.22rem;
  line-height: 1.18;
}

.detail-card p {
  color: var(--muted);
}

.partner-intro {
  max-width: 860px;
}

.partner-groups {
  display: grid;
  gap: 34px;
}

.partner-group {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.partner-group h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.partner-group p {
  color: var(--muted);
}

.logo-grid,
.logo-strip {
  display: grid;
  gap: 14px;
}

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

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

.brand-tile,
.logo-strip span {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #172638;
  text-align: center;
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.06);
}

.logo-strip span img {
  max-width: 100%;
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-strip span small {
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  font-weight: 700;
  color: var(--muted);
  line-height: 1.2;
}

.brand-tile img {
  width: auto;
  height: 42px;
  max-width: 124px;
  object-fit: contain;
}

.brand-tile small {
  display: block;
  min-height: 2.2em;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-note {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 30px;
}

.contact-card {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-method {
  padding: 18px;
  border-radius: 8px;
  background: var(--soft);
}

.contact-method span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-method a {
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.legal-doc {
  max-width: 860px;
  color: #253447;
}

.legal-doc h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.22;
}

.legal-doc h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.3;
}

.legal-doc ul {
  padding-left: 1.25rem;
}

.legal-doc address {
  font-style: normal;
  overflow-wrap: anywhere;
}

.form-shell {
  display: grid;
  gap: 14px;
}

.form-shell label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-shell input,
.form-shell textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.form-shell textarea {
  min-height: 140px;
  resize: vertical;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: #07111e;
  color: #fff;
  padding: 54px 24px 28px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) minmax(120px, 0.6fr) minmax(150px, 0.65fr) minmax(220px, 0.8fr);
  align-items: start;
  gap: 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-brand {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px 0;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

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

  .hero {
    min-height: 0;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-content {
    max-width: none;
    justify-self: start;
    padding: 58px 24px 42px;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, #061727 0%, rgba(6, 23, 39, 0.2) 48%, rgba(6, 23, 39, 0) 100%);
  }

  .service-grid,
  .process,
  .metrics,
  .footer-top,
  .detail-grid,
  .logo-grid,
  .logo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .partner-group {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    gap: 12px;
    padding: 10px 14px;
  }

  .brand img {
    width: min(218px, calc(100vw - 88px));
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  h1 {
    max-width: 9.8ch;
    margin-bottom: 20px;
    font-size: 2.95rem;
    line-height: 0.98;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: 2.45rem;
    line-height: 1.02;
  }

  .hero-copy,
  .page-hero p,
  .section-heading p {
    font-size: 1rem;
  }

  .section,
  .page-hero {
    padding-top: 58px;
    padding-bottom: 58px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content {
    padding: 48px 18px 34px;
  }

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

  .service-grid,
  .process,
  .metrics,
  .footer-top,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid,
  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .brand-tile,
  .logo-strip span {
    min-height: 104px;
    padding: 14px 10px;
  }

  .brand-tile img {
    max-width: 108px;
    height: 36px;
  }

  .logo-strip span img {
    height: 40px;
  }

  .service-card,
  .detail-card,
  .contact-card {
    min-height: 0;
    padding: 22px;
  }

  .detail-card-heading {
    min-height: 0;
    align-items: flex-start;
    gap: 12px;
  }

  .detail-icon {
    width: 46px;
    height: 46px;
  }

  .detail-icon svg {
    width: 26px;
    height: 26px;
  }

  .hero-media {
    min-height: 300px;
  }

  .status-panel {
    position: static;
    width: auto;
    margin: 0 18px 18px;
  }

  .split-media {
    min-height: 320px;
  }

  .cta-band {
    padding: 28px 22px;
  }

  .cta-band .button,
  .form-shell .button {
    width: 100%;
  }

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

  .footer-brand {
    max-width: 100%;
    font-size: 1.1rem;
  }

  .legal-doc h2 {
    margin-top: 28px;
    font-size: 1.18rem;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: min(198px, calc(100vw - 82px));
  }

  h1 {
    font-size: 2.6rem;
  }

  .page-hero h1 {
    font-size: 2.18rem;
  }

  .button {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card::before,
  .service-card img {
    transition: none;
  }

  .service-card:hover,
  .service-card:focus-within {
    transform: none;
  }
}
