:root {
  --ink: #132028;
  --muted: #52616b;
  --line: #d9e0e4;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --steel: #253642;
  --teal: #177c7a;
  --teal-dark: #0d5f5d;
  --green: #2d7b45;
  --amber: #b87824;
  --shadow: 0 18px 40px rgba(19, 32, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button,
input,
textarea {
  font: 16px/1.6 Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 228, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 700;
  color: var(--ink);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--teal);
  border-radius: 6px;
  font-size: 18px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  color: #33444f;
  font-size: 0.94rem;
}

.nav-links a,
.footer-platform a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-platform a:hover {
  color: var(--teal-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--teal);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.94rem;
  transition: background 160ms ease, transform 160ms ease;
}

.header-cta:hover,
.button.primary:hover {
  background: var(--teal-dark);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(780px, calc(100vh - 72px));
  padding: 92px clamp(20px, 5vw, 72px) 112px;
  overflow: hidden;
  background: var(--steel);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/managed-it-hero.png");
  background-position: center right;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 25, 32, 0.93) 0%, rgba(13, 25, 32, 0.82) 42%, rgba(13, 25, 32, 0.28) 100%),
    linear-gradient(180deg, rgba(13, 25, 32, 0.14) 0%, rgba(13, 25, 32, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8fdad5;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: #ffffff;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.intro {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.intro-copy p {
  font-size: 1.08rem;
}

.standard {
  background: #ffffff;
}

.feature-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.feature-shell.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.feature-image {
  min-height: 420px;
  overflow: hidden;
  background: #d8e1e3;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-copy p {
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  color: #2f404b;
  list-style: none;
}

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

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 3px;
}

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

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

.section-heading p {
  font-size: 1.06rem;
}

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

.service-card {
  min-height: 292px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(19, 32, 40, 0.07);
}

.service-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--amber);
  font-weight: 700;
}

.control {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

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

.outcome-card {
  min-height: 190px;
  padding: 22px;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.outcome-card p {
  margin-bottom: 0;
}

.why {
  background: #ffffff;
}

.why .split {
  align-items: center;
}

.proof-list {
  display: grid;
  gap: 16px;
}

.proof-item {
  padding: 0 0 16px 22px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid var(--teal);
}

.proof-item:last-child {
  border-bottom: 0;
}

.proof-item p {
  margin-bottom: 0;
}

.industries {
  background: #eef4f2;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.industry-list li {
  padding: 10px 14px;
  color: #21323d;
  background: #ffffff;
  border: 1px solid #cbd8d4;
  border-radius: 6px;
  font-weight: 700;
}

.process {
  background: #ffffff;
}

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

.process-step {
  min-height: 245px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #ffffff;
  background: var(--green);
  border-radius: 6px;
  font-weight: 700;
}

.cta-section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(19, 32, 40, 0.98), rgba(25, 53, 59, 0.96)),
    var(--steel);
}

.cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner .eyebrow {
  color: #8fdad5;
}

.cta-inner h2 {
  color: #ffffff;
}

.cta-inner p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

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

.contact-layout {
  align-items: start;
}

.form-panel {
  min-height: 360px;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 48px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #101b21;
}

.footer-inner {
  display: grid;
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-brand {
  color: #ffffff;
}

.site-footer p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-platform {
  font-size: 0.95rem;
}

.footer-platform a {
  color: #8fdad5;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .hero {
    min-height: auto;
    padding-top: 86px;
  }

  .hero-media {
    background-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 25, 32, 0.94) 0%, rgba(13, 25, 32, 0.78) 60%, rgba(13, 25, 32, 0.5) 100%),
      linear-gradient(180deg, rgba(13, 25, 32, 0.05), rgba(13, 25, 32, 0.35));
  }

  .split,
  .feature-shell,
  .feature-shell.reverse,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature-shell.reverse .feature-image {
    order: -1;
  }

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

@media (max-width: 640px) {
  .site-header {
    position: relative;
    gap: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    overflow-wrap: anywhere;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    padding: 72px 20px 86px;
  }

  .hero-media {
    background-position: 68% center;
  }

  h1 {
    font-size: 2.65rem;
  }

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

  .section {
    padding: 64px 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .feature-image,
  .feature-image img {
    min-height: 300px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step,
  .outcome-card {
    min-height: auto;
    padding: 24px;
  }

  .industry-list li {
    width: 100%;
  }

  .form-panel {
    padding: 20px;
  }
}
