:root {
  --uc-bg: #f7faf9;
  --uc-paper: #ffffff;
  --uc-ink: #102035;
  --uc-muted: #5c6b7a;
  --uc-line: #dbe5e1;
  --uc-navy: #0b1f35;
  --uc-blue: #2aa8dc;
  --uc-blue-dark: #0f6f91;
  --uc-orange: #f7931e;
  --uc-green: #6f8f44;
  --uc-shadow: 0 20px 60px rgba(12, 34, 52, 0.12);
}

.unitech-site,
.unitech-site * {
  box-sizing: border-box;
}

.unitech-site {
  margin: 0;
  overflow-x: hidden;
  color: var(--uc-ink);
  background: var(--uc-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.unitech-site a {
  color: inherit;
  text-decoration: none;
}

.unitech-site p {
  margin: 0;
}

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

.uc-topbar {
  background: var(--uc-navy);
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.uc-topbar .uc-container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.uc-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219,229,225,.86);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
}

.uc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.uc-brand {
  display: flex;
  align-items: center;
}

.uc-brand img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 210px;
  object-fit: contain;
}

.uc-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #34475b;
  font-size: 14px;
  font-weight: 750;
}

.uc-nav-links a {
  padding: 8px 0;
}

.uc-nav-links a:hover,
.uc-nav-links a[aria-current="page"] {
  color: var(--uc-blue-dark);
}

.uc-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--uc-line);
  border-radius: 8px;
  background: white;
  color: var(--uc-navy);
  font: inherit;
  font-weight: 800;
}

.uc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.uc-button:hover {
  transform: translateY(-1px);
}

.uc-button-primary {
  color: #fff;
  background: var(--uc-blue-dark);
  box-shadow: 0 12px 28px rgba(15, 146, 184, .24);
}

.uc-button-primary:hover {
  color: #fff;
  background: #0a5c7d;
}

.unitech-site a.uc-button-primary,
.unitech-site a.uc-button-primary:hover {
  color: #fff;
}

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

.uc-button-secondary:hover {
  color: var(--uc-blue-dark);
  border-color: var(--uc-blue);
}

.unitech-site a.uc-button-secondary {
  color: var(--uc-navy);
}

.unitech-site a.uc-button-secondary:hover {
  color: var(--uc-blue-dark);
}

.uc-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247,250,249,.98), rgba(247,250,249,.74) 48%, rgba(247,250,249,.25)),
    url("erp-operations-hero.png") center right / cover no-repeat;
}

.uc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, .78fr);
  gap: 48px;
  align-items: center;
  padding: 96px 0 84px;
}

.uc-hero h1,
.uc-page-hero h1 {
  margin: 0;
  color: var(--uc-navy);
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  letter-spacing: 0;
}

.uc-hero h1 {
  font-size: clamp(40px, 4.7vw, 60px);
  line-height: 1.04;
  max-width: 720px;
}

.uc-hero-lede {
  max-width: 640px;
  margin-top: 24px;
  color: #44586b;
  font-size: 20px;
  line-height: 1.55;
}

.uc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.uc-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin-top: 46px;
}

.uc-proof-item {
  padding: 18px;
  border-top: 3px solid var(--uc-orange);
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 30px rgba(12,34,52,.08);
}

.uc-proof-item strong {
  display: block;
  color: var(--uc-navy);
  font-size: 19px;
  line-height: 1.2;
}

.uc-proof-item span {
  display: block;
  margin-top: 6px;
  color: var(--uc-muted);
  font-size: 13px;
  line-height: 1.45;
}

.uc-hero-panel,
.uc-product-ui,
.uc-contact-card {
  border: 1px solid rgba(219,229,225,.9);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--uc-shadow);
}

.uc-hero-panel {
  align-self: end;
  padding: 24px;
}

.uc-system-map {
  display: grid;
  gap: 12px;
}

.uc-system-map > div {
  display: grid;
  grid-template-columns: 84px 1fr 70px;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--uc-line);
  border-radius: 8px;
  background: #fff;
  color: #274056;
  font-size: 13px;
  font-weight: 800;
}

.uc-system-map span {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8f0ed;
}

.uc-system-map i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--uc-blue), var(--uc-green));
}

.uc-system-map em {
  color: var(--uc-blue-dark);
  font-size: 12px;
  font-style: normal;
  text-align: right;
}

.uc-section {
  padding: 92px 0;
}

.uc-section-white {
  background: #fff;
}

.uc-section-green {
  background: #eef5ef;
}

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

.uc-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.uc-section h2,
.uc-page-hero h1,
.uc-page-layout h2 {
  color: var(--uc-navy);
}

.uc-section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.uc-section-head p,
.uc-page-hero p,
.uc-page-layout p,
.uc-product-card p {
  margin-top: 16px;
  color: var(--uc-muted);
  font-size: 18px;
}

.uc-section-navy h2,
.uc-section-navy h3 {
  color: #fff;
}

.uc-section-navy p {
  color: rgba(255,255,255,.76);
}

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

.uc-service-card,
.uc-plan-grid article,
.uc-insight-grid article,
.uc-product-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--uc-line);
  border-radius: 8px;
  background: #fff;
}

.uc-index,
.uc-plan-grid span,
.uc-insight-grid time {
  color: var(--uc-orange);
  font-size: 13px;
  font-weight: 900;
}

.uc-service-card h3,
.uc-plan-grid h3,
.uc-insight-grid h3,
.uc-product-card h2,
.uc-page-layout h2,
.uc-page-layout h3 {
  margin: 14px 0 10px;
  color: var(--uc-navy);
  line-height: 1.15;
}

.uc-service-card h3,
.uc-plan-grid h3,
.uc-insight-grid h3 {
  font-size: 23px;
}

.uc-insight-grid h3 a {
  color: inherit;
}

.uc-insight-grid h3 a:hover {
  color: var(--uc-blue-dark);
}

.uc-service-card p,
.uc-plan-grid p,
.uc-insight-grid p {
  color: var(--uc-muted);
}

.uc-text-link,
.uc-aside a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--uc-blue-dark);
  font-weight: 900;
}

.uc-epicor-layout,
.uc-product-band,
.uc-contact-band,
.uc-page-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: start;
}

.uc-epicor-layout {
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
}

.uc-epicor-list {
  display: grid;
  gap: 12px;
}

.uc-epicor-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.uc-epicor-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--uc-navy);
  background: var(--uc-orange);
  font-weight: 900;
}

.uc-product-ui {
  overflow: hidden;
  background: #f8fbfa;
}

.uc-product-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--uc-line);
  background: #fff;
}

.uc-product-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.uc-product-toolbar span:nth-child(1) { background: #d96d60; }
.uc-product-toolbar span:nth-child(2) { background: #dca53d; }
.uc-product-toolbar span:nth-child(3) { background: #63a96a; }

.uc-product-ui-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 330px;
}

.uc-product-sidebar {
  padding: 16px;
  border-right: 1px solid var(--uc-line);
  background: #ecf4f1;
}

.uc-product-sidebar b {
  display: block;
  margin-bottom: 9px;
  padding: 9px 10px;
  border-radius: 8px;
  background: #fff;
  color: #33485b;
  font-size: 12px;
}

.uc-product-main {
  padding: 18px;
}

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

.uc-operation-grid > div {
  padding: 14px;
  border: 1px solid var(--uc-line);
  border-radius: 8px;
  background: #fff;
}

.uc-operation-grid b {
  display: block;
  color: var(--uc-navy);
  font-size: 14px;
}

.uc-operation-grid span {
  color: var(--uc-muted);
  font-size: 12px;
}

.uc-progress {
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  background: var(--uc-blue-dark);
  color: #fff;
}

.uc-progress span {
  display: block;
  height: 9px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
}

.uc-progress i {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: var(--uc-orange);
}

.uc-page-hero {
  padding: 90px 0 68px;
  border-bottom: 1px solid var(--uc-line);
  background: linear-gradient(135deg, #f8fbfa, #ecf4f1);
}

.uc-page-hero .uc-container > * {
  max-width: 880px;
}

.uc-page-hero .uc-product-band > * {
  max-width: none;
}

.uc-page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
}

.uc-page-layout {
  grid-template-columns: minmax(0, .76fr) minmax(300px, .24fr);
}

.uc-page-layout article p + p {
  margin-top: 14px;
}

.uc-page-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.uc-page-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 24px;
  color: #4f6172;
}

.uc-page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--uc-blue-dark);
}

.uc-aside {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid var(--uc-line);
  border-radius: 8px;
  background: #fff;
}

.uc-aside h3 {
  margin-top: 0;
  color: var(--uc-navy);
}

.uc-aside a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--uc-line);
}

.uc-contact-card {
  padding: 28px;
}

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

.uc-field {
  display: grid;
  gap: 7px;
}

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

.uc-field label {
  color: #294055;
  font-size: 13px;
  font-weight: 900;
}

.uc-field input,
.uc-field select,
.uc-field textarea {
  width: 100%;
  border: 1px solid #cad9d5;
  border-radius: 8px;
  background: #f9fbfa;
  color: var(--uc-ink);
  font: inherit;
  font-size: 15px;
}

.uc-field input,
.uc-field select {
  height: 48px;
  padding: 0 14px;
}

.uc-field textarea {
  min-height: 136px;
  padding: 13px 14px;
  resize: vertical;
}

.uc-field input:focus,
.uc-field select:focus,
.uc-field textarea:focus {
  outline: 3px solid rgba(42,168,220,.18);
  border-color: var(--uc-blue);
  background: #fff;
}

.uc-support-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.uc-support-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--uc-line);
  border-radius: 8px;
  background: #fff;
  color: #3e5366;
  cursor: pointer;
}

.uc-support-options input {
  width: 16px;
  height: 16px;
}

.uc-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.uc-privacy-note,
.uc-form-notice {
  color: var(--uc-muted);
  font-size: 13px;
}

.uc-form-notice {
  grid-column: 1 / -1;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 8px;
}

.uc-form-success {
  color: #135d37;
  background: #e9f7ef;
}

.uc-form-error {
  color: #7d2525;
  background: #fbeaea;
}

.uc-footer {
  padding: 46px 0;
  color: rgba(255,255,255,.76);
  background: #07192b;
}

.uc-footer .uc-brand img {
  height: 52px;
  max-width: 260px;
}

.uc-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.uc-footer p {
  margin-top: 12px;
}

.uc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.uc-footer-links a:hover {
  color: #fff;
}

@media (max-width: 960px) {
  .uc-nav {
    min-height: 66px;
  }

  .uc-menu-button {
    display: inline-grid;
    place-items: center;
  }

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

  .uc-nav-links.is-open {
    display: flex;
  }

  .uc-nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid #edf2f0;
  }

  .uc-nav > .uc-button {
    display: none;
  }

  .uc-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(247,250,249,.96), rgba(247,250,249,.88)),
      url("erp-operations-hero.png") center / cover no-repeat;
  }

  .uc-hero-grid,
  .uc-epicor-layout,
  .uc-product-band,
  .uc-contact-band,
  .uc-page-layout {
    grid-template-columns: 1fr;
  }

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

  .uc-section-head {
    align-items: start;
    flex-direction: column;
  }

  .uc-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .uc-container {
    width: min(100% - 28px, 1180px);
  }

  .uc-topbar .uc-container {
    flex-direction: column;
    gap: 4px;
  }

  .uc-brand img {
    height: 34px;
    max-width: 168px;
  }

  .uc-hero h1 {
    font-size: 42px;
  }

  .uc-hero-lede,
  .uc-section-head p,
  .uc-page-hero p {
    font-size: 16px;
  }

  .uc-proof-grid,
  .uc-service-grid,
  .uc-plan-grid,
  .uc-insight-grid,
  .uc-form-grid,
  .uc-support-options,
  .uc-operation-grid,
  .uc-product-ui-body,
  .uc-footer-grid,
  .uc-system-map > div {
    grid-template-columns: 1fr;
  }

  .uc-system-map em {
    text-align: left;
  }

  .uc-section {
    padding: 68px 0;
  }

  .uc-form-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .uc-button {
    width: 100%;
  }
}
