/* Stylesheet of the netforce365.com pages served from /netforce365. Self-contained on
   purpose: the ict365 site.css carries the ICT brand and must not leak into this one.
   Fonts are the same self-hosted Roboto files site.css uses — no third-party requests. */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Roboto-300-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Roboto-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/Roboto-700-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------------------------------------------------------------
   Tokens. Palette taken from the Webflow build of netforce365.com
   (primary #0050bd, ink #1a1b1f) so the brand survives the move.
   --------------------------------------------------------------- */
:root {
  --nf-blue: #0050bd;
  --nf-blue-dark: #003f96;
  --nf-ink: #1a1b1f;
  --nf-ink-soft: #758696;
  --nf-line: #e4ebf3;
  --nf-bg: #fff;
  --nf-tint: #f5f7fa;
  --nf-wrap: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.nf {
  margin: 0;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--nf-ink);
  background: var(--nf-bg);
}

.nf-wrap {
  max-width: var(--nf-wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nf img {
  max-width: 100%;
  height: auto;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--nf-blue);
  color: #fff;
  padding: 0.5rem 1rem;
}

.skip-link:focus {
  left: 0;
  z-index: 10;
}

/* Header */
.nf-header {
  border-bottom: 1px solid var(--nf-line);
  background: var(--nf-bg);
}

.nf-header__inner {
  display: flex;
  align-items: center;
  min-height: 64px;
}

.nf-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--nf-ink);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

/* Hero */
.nf-hero {
  background: var(--nf-tint);
  border-bottom: 1px solid var(--nf-line);
  text-align: center;
  padding: 4.5rem 0;
}

.nf-hero h1 {
  margin: 0 auto;
  max-width: 18ch;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--nf-ink);
}

.nf-hero--small {
  padding: 2.75rem 0;
}

.nf-hero--small h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  max-width: none;
}

/* Content sections: text and image side by side, alternating */
.nf-section {
  padding: 3.5rem 0;
}

.nf-section + .nf-section {
  border-top: 1px solid var(--nf-line);
}

.nf-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
}

.nf-section__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.nf-section__media img {
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.nf-section--promo {
  background: var(--nf-tint);
}

.nf-section--promo .nf-section__media img {
  max-width: 260px;
}

.nf a.nf-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.7rem 1.5rem;
  background: var(--nf-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  border-radius: 6px;
}

.nf a.nf-btn:hover {
  background: var(--nf-blue-dark);
}

@media (min-width: 800px) {
  .nf-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .nf-section--flip .nf-section__body {
    order: 2;
  }

  .nf-section--flip .nf-section__media {
    order: 1;
  }
}

/* Team */
.nf-team {
  text-align: center;
}

.nf-team__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.nf-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.nf-person img {
  border-radius: 50%;
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.nf-person strong {
  margin-top: 0.5rem;
  font-weight: 700;
}

.nf-person span {
  color: var(--nf-ink-soft);
}

/* Legal prose */
.nf-prose {
  max-width: 760px;
}

.nf-prose h2 {
  margin-top: 2.25rem;
  font-size: 1.35rem;
}

/* Footer */
.nf-footer {
  margin-top: 3rem;
  background: var(--nf-ink);
  color: #c8ccd4;
  padding: 2.5rem 0;
  font-size: 0.95rem;
}

.nf-footer a {
  color: #fff;
  text-decoration: none;
}

.nf-footer a:hover {
  text-decoration: underline;
}

.nf-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.nf-footer__links,
.nf-footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
}

.nf-footer__meta {
  margin: 0;
  color: var(--nf-ink-soft);
}
