* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #0b2341;
  background: #ffffff;
}

.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e8edf2;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  width: 320px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: #28384d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #2bc766;
}

.main-nav .cta {
  background: #0b2341;
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 9px;
}

.main-nav .cta:hover {
  background: #f47c20;
  color: #ffffff;
}

.page-placeholder {
  min-height: 500px;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.page-placeholder h1 {
  font-size: 42px;
  color: #0b2341;
}

@media (max-width: 800px) {
  .header-inner {
    padding: 16px 20px;
    flex-direction: column;
    gap: 18px;
  }

  .site-logo {
    width: 190px;
  }

  .main-nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
}.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(11, 35, 65, 0.88), rgba(11, 35, 65, 0.88)),
    url("../images/hero-business.png") center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: 180px;
  height: 180px;
  border-right: 3px solid rgba(244, 124, 32, 0.55);
  border-top: 3px solid rgba(43, 199, 102, 0.55);
  transform: rotate(45deg);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: max(32px, calc((100vw - 1280px) / 2 + 32px));
  padding: 80px 32px;
}

.hero-kicker {
  color: #2bc766;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #ffffff;
}

.hero-text {
  font-size: 21px;
  line-height: 1.6;
  color: #dbe4ef;
  max-width: 700px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
}

.btn-green {
  background: #2bc766;
  color: #ffffff;
}

.btn-green:hover {
  background: #22a955;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.55);
  color: #ffffff;
}

.btn-outline:hover {
  border-color: #f47c20;
  color: #f47c20;
}

@media (max-width: 800px) {
  .hero {
    min-height: 560px;
  }

  .hero-content {
    margin-left: 0;
    padding: 64px 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 18px;
  }
}.services-overview {
  background: #ffffff;
  padding: 90px 32px;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-kicker {
  color: #2bc766;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
}

.section-heading h2 {
  font-size: 40px;
  line-height: 1.15;
  color: #0b2341;
  margin-bottom: 18px;
}

.section-heading p {
  font-size: 18px;
  line-height: 1.7;
  color: #5b6470;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: #f8fafc;
  border: 1px solid #e6ecf2;
  border-radius: 18px;
  padding: 34px 32px;
  box-shadow: 0 12px 30px rgba(11, 35, 65, 0.05);
}

.outsourcing-card {
  border-top: 5px solid #2bc766;
}

.managedit-card {
  border-top: 5px solid #f47c20;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
  background: #0b2341;
  color: #ffffff;
}

.service-card h3 {
  font-size: 28px;
  color: #0b2341;
  margin-bottom: 14px;
}

.service-card p {
  color: #5b6470;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card ul {
  margin-left: 18px;
  margin-bottom: 24px;
}

.service-card li {
  color: #334155;
  margin-bottom: 10px;
  line-height: 1.5;
}

.service-link {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  color: #0b2341;
}

.service-link:hover {
  color: #2bc766;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .services-overview {
    padding: 70px 24px;
  }

  .section-heading h2 {
    font-size: 32px;
  }
}.why-scaleup {
  background: #0b2341;
  padding: 90px 32px;
  color: #ffffff;
}

.why-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.why-heading .section-kicker {
  color: #f47c20;
}

.why-heading h2 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #ffffff;
}

.why-heading > p:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: #cbd5e1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 199, 102, 0.55);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2bc766, #2563eb);
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
  color: #ffffff;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
}

@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-scaleup {
    padding: 70px 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-heading h2 {
    font-size: 32px;
  }
}.why-sa {
  background: #f5f7fa;
  padding: 95px 32px;
}

.why-sa-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: center;
}

.why-sa-content {
  max-width: 760px;
}

.why-sa-content h2 {
  font-size: 40px;
  line-height: 1.15;
  color: #0b2341;
  margin-bottom: 18px;
}

.why-sa-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #5b6470;
  margin-bottom: 38px;
}

.why-sa-points {
  display: grid;
  gap: 26px;
}

.why-sa-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-sa-point > span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #2bc766;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 2px;
}

.why-sa-point h3 {
  color: #0b2341;
  font-size: 19px;
  margin-bottom: 6px;
}

.why-sa-point p {
  color: #5b6470;
  line-height: 1.6;
  font-size: 15px;
}

.why-sa-visual {
  min-height: 390px;
  border-radius: 24px;
  background: linear-gradient(145deg, #0b2341, #123b69);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(11, 35, 65, 0.14);
}

.scale-graphic {
  height: 210px;
  width: 270px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  position: relative;
  margin-bottom: 28px;
}

.scale-bar {
  width: 42px;
  border-radius: 7px 7px 0 0;
}

.bar-1 {
  height: 55px;
  background: #2563eb;
}

.bar-2 {
  height: 95px;
  background: #2bc766;
}

.bar-3 {
  height: 140px;
  background: #f47c20;
}

.bar-4 {
  height: 190px;
  background: #ffffff;
}

.scale-arrow {
  position: absolute;
  right: 2px;
  top: -15px;
  color: #2bc766;
  font-size: 68px;
  font-weight: 700;
}

.why-sa-visual p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 900px) {
  .why-sa-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-sa-visual {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .why-sa {
    padding: 70px 24px;
  }

  .why-sa-content h2 {
    font-size: 32px;
  }

  .scale-graphic {
    transform: scale(0.85);
  }
}.final-cta {
  background: #ffffff;
  padding: 90px 32px;
}

.final-cta-inner {
  background: linear-gradient(135deg, #0b2341, #123b69);
  border-radius: 24px;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(11, 35, 65, 0.12);
}

.final-cta-copy {
  max-width: 720px;
}

.final-cta-copy .section-kicker {
  color: #f47c20;
}

.final-cta-copy h2 {
  color: #ffffff;
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.final-cta-copy p:last-child {
  color: #dbe4ef;
  font-size: 17px;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-orange {
  background: #f47c20;
  color: #ffffff;
}

.btn-orange:hover {
  background: #dc6813;
}

@media (max-width: 900px) {
  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 44px 36px;
  }
}

@media (max-width: 600px) {
  .final-cta {
    padding: 70px 24px;
  }

  .final-cta-inner {
    padding: 36px 28px;
  }

  .final-cta-copy h2 {
    font-size: 31px;
  }
}.site-footer {
  background: #081a2f;
  color: #ffffff;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  width: 260px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #b8c4d1;
  font-size: 15px;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-column a {
  color: #b8c4d1;
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover {
  color: #2bc766;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: #8fa0b3;
  font-size: 13px;
}

.footer-bottom-inner > div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: #8fa0b3;
  text-decoration: none;
  font-size: 13px;
}

.footer-bottom a:hover {
  color: #f47c20;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-logo {
    width: 220px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}/* =========================================
   OUTSOURCING PAGE
========================================= */

.subpage-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #081a2f, #0b2341 55%, #123b69);
  color: #ffffff;
  padding: 90px 32px;
}

.subpage-hero-inner {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.subpage-hero-copy {
  max-width: 720px;
}

.subpage-hero-copy .section-kicker {
  color: #2bc766;
}

.subpage-hero-copy h1 {
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.subpage-hero-copy h1 span {
  color: #2bc766;
}

.subpage-hero-copy > p:last-of-type {
  color: #dbe4ef;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Outsourcing hero scaling graphic */

.outsourcing-visual {
  position: relative;
  width: 390px;
  height: 390px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.talent-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(43, 199, 102, 0.35);
}

.ring-1 {
  width: 300px;
  height: 300px;
}

.ring-2 {
  width: 390px;
  height: 390px;
  border-color: rgba(244, 124, 32, 0.28);
}

.talent-center {
  position: relative;
  z-index: 2;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2bc766, #17984c);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 50px rgba(43, 199, 102, 0.25);
}

.talent-center span {
  font-size: 18px;
}

.talent-center strong {
  font-size: 22px;
  margin-top: 3px;
}

.talent-node {
  position: absolute;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #ffffff;
  color: #0b2341;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.node-1 {
  top: 15px;
  left: 160px;
}

.node-2 {
  right: 5px;
  top: 160px;
}

.node-3 {
  bottom: 15px;
  left: 160px;
}

.node-4 {
  left: 5px;
  top: 160px;
}

/* Intro */

.content-section {
  padding: 90px 32px;
  background: #ffffff;
}

.narrow-content {
  max-width: 900px;
}

.narrow-content h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0b2341;
}

.lead-text {
  color: #5b6470;
  font-size: 19px;
  line-height: 1.8;
}

.info-banner {
  background: #edfdf3;
  border-left: 5px solid #2bc766;
  border-radius: 10px;
  padding: 24px 26px;
  margin-top: 34px;
}

.info-banner strong {
  display: block;
  color: #0b2341;
  font-size: 18px;
  margin-bottom: 8px;
}

.info-banner p {
  color: #4a5b6d;
  line-height: 1.6;
}

/* How it works */

.process-section {
  padding: 95px 32px;
  background: #f5f7fa;
}

.centered-heading {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  text-align: center;
}

.centered-heading .section-kicker {
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 16px;
  border: 1px solid #e4eaf0;
  position: relative;
}

.process-number {
  display: block;
  color: #2bc766;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 24px;
}

.process-card h3 {
  color: #0b2341;
  font-size: 21px;
  margin-bottom: 12px;
}

.process-card p {
  color: #5b6470;
  line-height: 1.7;
  font-size: 15px;
}

/* Roles */

.roles-section {
  background: #ffffff;
  padding: 95px 32px;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.role-card {
  border: 1px solid #e4eaf0;
  border-radius: 16px;
  padding: 28px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(11, 35, 65, 0.08);
}

.role-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 20px;
}

.green-accent {
  background: #2bc766;
}

.blue-accent {
  background: #2563eb;
}

.orange-accent {
  background: #f47c20;
}

.purple-accent {
  background: #7256d8;
}

.role-card h3 {
  font-size: 20px;
  color: #0b2341;
  margin-bottom: 10px;
}

.role-card p {
  color: #5b6470;
  line-height: 1.7;
  font-size: 15px;
}

/* Responsibility split */

.responsibility-section {
  background: #0b2341;
  padding: 95px 32px;
}

.responsibility-section .section-kicker {
  color: #2bc766;
}

.responsibility-section .section-heading h2 {
  color: #ffffff;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.responsibility-card {
  border-radius: 18px;
  padding: 34px;
}

.scaleup-side {
  background: #ffffff;
}

.client-side {
  background: #122f50;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.responsibility-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #2bc766;
  margin-bottom: 12px;
}

.responsibility-card h3 {
  font-size: 24px;
  margin-bottom: 22px;
}

.scaleup-side h3 {
  color: #0b2341;
}

.client-side h3 {
  color: #ffffff;
}

.responsibility-card ul {
  list-style: none;
}

.responsibility-card li {
  margin-bottom: 13px;
  line-height: 1.5;
  padding-left: 25px;
  position: relative;
}

.responsibility-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2bc766;
  font-weight: 800;
}

.scaleup-side li {
  color: #4d5c6b;
}

.client-side li {
  color: #d5deea;
}

/* Why South African talent */

.outsourcing-sa {
  padding: 95px 32px;
  background: #f5f7fa;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid #e4eaf0;
}

.benefit-card > span {
  display: block;
  color: #f47c20;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
}

.benefit-card h3 {
  color: #0b2341;
  font-size: 19px;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #5b6470;
  line-height: 1.7;
  font-size: 15px;
}

.outsourcing-final-cta .section-kicker {
  color: #2bc766;
}

/* Tablet */

@media (max-width: 1000px) {
  .subpage-hero-inner {
    grid-template-columns: 1fr;
  }

  .outsourcing-visual {
    width: 330px;
    height: 330px;
  }

  .ring-1 {
    width: 250px;
    height: 250px;
  }

  .ring-2 {
    width: 330px;
    height: 330px;
  }

  .node-1,
  .node-3 {
    left: 132px;
  }

  .node-2,
  .node-4 {
    top: 132px;
  }

  .process-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 700px) {
  .subpage-hero {
    padding: 70px 24px;
  }

  .subpage-hero-copy h1 {
    font-size: 42px;
  }

  .subpage-hero-copy > p:last-of-type {
    font-size: 18px;
  }

  .outsourcing-visual {
    display: none;
  }

  .content-section,
  .process-section,
  .roles-section,
  .responsibility-section,
  .outsourcing-sa {
    padding: 70px 24px;
  }

  .narrow-content h2 {
    font-size: 32px;
  }

  .process-grid,
  .roles-grid,
  .responsibility-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}/* =========================================
   MANAGED IT PAGE
========================================= */

.managed-it-hero {
  background:
    radial-gradient(circle at 80% 35%, rgba(244,124,32,0.17), transparent 28%),
    linear-gradient(135deg, #081a2f, #0b2341 52%, #123b69);
}

.managed-it-copy .section-kicker,
.orange-kicker {
  color: #f47c20;
}

.managed-it-copy h1 span {
  color: #f47c20;
}

/* Hero technology graphic */

.managed-it-visual {
  width: 390px;
  height: 390px;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-core {
  width: 165px;
  height: 165px;
  border-radius: 32px;
  background: linear-gradient(145deg, #f47c20, #d85f0c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(244,124,32,0.28);
}

.tech-core span {
  font-size: 17px;
}

.tech-core strong {
  font-size: 20px;
  margin-top: 4px;
}

.tech-node {
  width: 72px;
  height: 72px;
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #ffffff;
  color: #0b2341;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.tech-node-1 {
  top: 20px;
  left: 159px;
}

.tech-node-2 {
  right: 5px;
  top: 159px;
}

.tech-node-3 {
  bottom: 20px;
  left: 159px;
}

.tech-node-4 {
  left: 5px;
  top: 159px;
}

.tech-line {
  background: rgba(244,124,32,0.45);
  height: 2px;
  width: 120px;
  position: absolute;
  z-index: 1;
}

.line-one {
  transform: rotate(90deg);
  top: 92px;
}

.line-two {
  right: 52px;
}

.line-three {
  transform: rotate(90deg);
  bottom: 92px;
}

.line-four {
  left: 52px;
}

/* Intro */

.managed-it-intro {
  background: #ffffff;
}

.it-info-banner {
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: 10px;
  background: #fff5ec;
  border-left: 5px solid #f47c20;
}

.it-info-banner strong {
  color: #0b2341;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.it-info-banner p {
  color: #4a5b6d;
  line-height: 1.6;
}

/* Managed services */

.managed-services-section {
  padding: 95px 32px;
  background: #f5f7fa;
}

.managed-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.managed-service-card {
  background: #ffffff;
  border: 1px solid #e4eaf0;
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.managed-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(11,35,65,0.08);
}

.managed-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #0b2341;
  color: #f47c20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.managed-service-card h3 {
  color: #0b2341;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 11px;
}

.managed-service-card p {
  color: #5b6470;
  line-height: 1.7;
  font-size: 15px;
}

/* Who we help */

.it-fit-section {
  background: #ffffff;
  padding: 95px 32px;
}

.it-fit-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.it-fit-copy h2 {
  font-size: 40px;
  line-height: 1.15;
  color: #0b2341;
  margin-bottom: 18px;
}

.it-fit-copy > p:last-child {
  color: #5b6470;
  font-size: 18px;
  line-height: 1.7;
}

.it-fit-list {
  display: grid;
  gap: 14px;
}

.it-fit-item {
  background: #f8fafc;
  border: 1px solid #e6ecf2;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.it-fit-item span {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: #f47c20;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
}

.it-fit-item p {
  color: #334155;
  font-weight: 600;
  line-height: 1.4;
}

/* Approach */

.it-approach-section {
  background: #0b2341;
  padding: 95px 32px;
}

.it-approach-section .section-heading h2 {
  color: #ffffff;
}

.it-approach-section .section-heading > p:last-child {
  color: #cbd5e1;
}

.it-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.it-approach-card {
  border-radius: 16px;
  padding: 30px 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.it-approach-card > span {
  color: #f47c20;
  font-weight: 800;
  font-size: 14px;
  display: block;
  margin-bottom: 20px;
}

.it-approach-card h3 {
  color: #ffffff;
  font-size: 21px;
  margin-bottom: 10px;
}

.it-approach-card p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
}

/* Technology scope */

.technology-scope-section {
  background: #eef3f8;
  padding: 80px 32px;
}

.technology-scope-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.technology-scope-inner h2 {
  color: #0b2341;
  font-size: 36px;
  line-height: 1.2;
}

.technology-scope-inner > p {
  color: #5b6470;
  font-size: 18px;
  line-height: 1.8;
}

.managed-it-final-cta .section-kicker {
  color: #f47c20;
}

/* Tablet */

@media (max-width: 1050px) {
  .managed-services-grid,
  .it-approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .it-fit-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .technology-scope-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .managed-it-visual {
    display: none;
  }

  .managed-services-section,
  .it-fit-section,
  .it-approach-section,
  .technology-scope-section {
    padding: 70px 24px;
  }

  .managed-services-grid,
  .it-approach-grid {
    grid-template-columns: 1fr;
  }

  .it-fit-copy h2 {
    font-size: 32px;
  }

  .technology-scope-inner h2 {
    font-size: 30px;
  }
}/* =========================================
   ABOUT PAGE
========================================= */

.about-hero {
  background:
    radial-gradient(circle at 80% 30%, rgba(43,199,102,0.14), transparent 25%),
    linear-gradient(135deg, #081a2f, #0b2341 58%, #123b69);
  color: #ffffff;
  padding: 95px 32px;
}

.about-hero-inner {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.about-hero-copy {
  max-width: 720px;
}

.about-hero-copy h1 {
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.about-hero-copy h1 span {
  color: #2bc766;
}

.about-hero-copy > p:last-child {
  color: #dbe4ef;
  font-size: 20px;
  line-height: 1.7;
}

.about-scale-visual {
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  position: relative;
}

.about-bar {
  width: 55px;
  border-radius: 9px 9px 0 0;
}

.about-bar-1 {
  height: 70px;
  background: #2563eb;
}

.about-bar-2 {
  height: 120px;
  background: #2bc766;
}

.about-bar-3 {
  height: 180px;
  background: #f47c20;
}

.about-bar-4 {
  height: 245px;
  background: #ffffff;
}

.about-growth-arrow {
  position: absolute;
  right: 55px;
  top: -15px;
  font-size: 85px;
  color: #2bc766;
  font-weight: 800;
}

.about-intro {
  padding: 95px 32px;
  background: #ffffff;
}

.about-intro-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.about-intro h2 {
  font-size: 40px;
  line-height: 1.15;
  color: #0b2341;
}

.about-intro-copy {
  display: grid;
  gap: 22px;
}

.about-intro-copy p {
  font-size: 18px;
  line-height: 1.8;
  color: #5b6470;
}

.about-divisions {
  background: #f5f7fa;
  padding: 95px 32px;
}

.about-division-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.about-division-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 18px;
  border: 1px solid #e4eaf0;
}

.outsourcing-division {
  border-top: 5px solid #2bc766;
}

.managed-division {
  border-top: 5px solid #f47c20;
}

.about-division-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 800;
  color: #5b6470;
  margin-bottom: 14px;
}

.about-division-card h3 {
  font-size: 27px;
  color: #0b2341;
  margin-bottom: 14px;
}

.about-division-card p {
  color: #5b6470;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-division-card ul {
  margin-left: 20px;
  margin-bottom: 24px;
}

.about-division-card li {
  margin-bottom: 10px;
  color: #334155;
}

.about-division-card a {
  color: #0b2341;
  text-decoration: none;
  font-weight: 800;
}

.about-approach {
  padding: 95px 32px;
  background: #0b2341;
}

.about-approach .section-heading h2 {
  color: #ffffff;
}

.about-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.about-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 30px 26px;
}

.about-step span {
  color: #f47c20;
  font-size: 14px;
  font-weight: 800;
}

.about-step h3 {
  color: #ffffff;
  font-size: 21px;
  margin: 18px 0 10px;
}

.about-step p {
  color: #cbd5e1;
  line-height: 1.7;
}

.about-values {
  padding: 95px 32px;
  background: #ffffff;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.about-value {
  display: flex;
  gap: 18px;
  padding: 26px;
  border: 1px solid #e4eaf0;
  border-radius: 14px;
}

.about-value > span {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: #0b2341;
  color: #2bc766;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.about-value h3 {
  color: #0b2341;
  margin-bottom: 7px;
}

.about-value p {
  color: #5b6470;
  line-height: 1.65;
}


/* =========================================
   CONTACT PAGE
========================================= */

.contact-hero {
  background: linear-gradient(135deg, #081a2f, #0b2341, #123b69);
  color: #ffffff;
  padding: 100px 32px;
}

.contact-hero-inner {
  max-width: 850px;
}

.contact-hero h1 {
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.contact-hero p:last-child {
  font-size: 20px;
  line-height: 1.7;
  color: #dbe4ef;
  max-width: 740px;
}

.contact-section {
  padding: 95px 32px;
  background: #f5f7fa;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  color: #0b2341;
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-info > p:not(.section-kicker) {
  color: #5b6470;
  font-size: 17px;
  line-height: 1.7;
}

.contact-options {
  margin-top: 35px;
  display: grid;
  gap: 15px;
}

.contact-option {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e4eaf0;
  border-radius: 12px;
}

.contact-option > span {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 9px;
  background: #0b2341;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.outsourcing-option {
  border-left: 4px solid #2bc766;
}

.managed-option {
  border-left: 4px solid #f47c20;
}

.contact-option h3 {
  color: #0b2341;
  margin-bottom: 6px;
}

.contact-option p {
  color: #5b6470;
  line-height: 1.6;
  font-size: 14px;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 38px;
  border: 1px solid #e4eaf0;
  box-shadow: 0 15px 40px rgba(11,35,65,0.08);
}

.contact-form-card h2 {
  color: #0b2341;
  font-size: 28px;
  margin-bottom: 8px;
}

.form-intro {
  color: #5b6470;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: #0b2341;
  font-size: 14px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #ccd6e0;
  border-radius: 8px;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 15px;
  color: #0b2341;
  background: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2bc766;
  box-shadow: 0 0 0 3px rgba(43,199,102,0.1);
}

.contact-submit {
  border: none;
  background: #0b2341;
  color: #ffffff;
  border-radius: 8px;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.contact-submit:hover {
  background: #f47c20;
}

.form-note {
  color: #7b8794;
  font-size: 12px;
  line-height: 1.5;
}


/* =========================================
   ABOUT / CONTACT RESPONSIVE
========================================= */

@media (max-width: 950px) {
  .about-hero-inner,
  .about-intro-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-scale-visual {
    max-width: 400px;
  }

  .about-approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .about-hero,
  .about-intro,
  .about-divisions,
  .about-approach,
  .about-values,
  .contact-hero,
  .contact-section {
    padding: 70px 24px;
  }

  .about-hero-copy h1,
  .contact-hero h1 {
    font-size: 42px;
  }

  .about-scale-visual {
    display: none;
  }

  .about-intro h2,
  .contact-info h2 {
    font-size: 32px;
  }

  .about-division-grid,
  .about-approach-grid,
  .about-values-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 22px;
  }
}/* CONTACT FORM STATUS */

.form-success {
  background: #edfdf3;
  border: 1px solid #b8eacb;
  border-left: 5px solid #2bc766;
  color: #176536;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 24px;
  line-height: 1.6;
  font-weight: 600;
}

.form-error {
  background: #fff3f0;
  border: 1px solid #f3c2b8;
  border-left: 5px solid #f47c20;
  color: #8a321f;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 24px;
  line-height: 1.6;
  font-weight: 600;
}/* =========================================
   LEGAL PAGES
========================================= */

.legal-hero {
  background:
    linear-gradient(135deg, #081a2f, #0b2341 60%, #123b69);
  color: #ffffff;
  padding: 85px 32px;
}

.legal-hero-inner {
  max-width: 900px;
}

.legal-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.legal-hero p:last-child {
  color: #dbe4ef;
  font-size: 19px;
  line-height: 1.7;
}

.legal-section {
  background: #f5f7fa;
  padding: 85px 32px;
}

.legal-content {
  max-width: 900px;
  background: #ffffff;
  border: 1px solid #e4eaf0;
  border-radius: 18px;
  padding: 48px 52px;
  box-shadow: 0 14px 35px rgba(11,35,65,0.06);
}

.legal-updated {
  color: #7b8794;
  font-size: 14px;
  padding-bottom: 26px;
  margin-bottom: 34px;
  border-bottom: 1px solid #e4eaf0;
}

.legal-content h2 {
  color: #0b2341;
  font-size: 25px;
  line-height: 1.3;
  margin-top: 38px;
  margin-bottom: 14px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: #536172;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 12px 0 22px 22px;
}

.legal-content li {
  color: #536172;
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal-content a {
  color: #2563eb;
}

.legal-content a:hover {
  color: #2bc766;
}

.legal-company-box {
  margin: 28px 0 36px;
  padding: 26px 28px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e4eaf0;
}

.legal-company-box p {
  margin-bottom: 8px;
}

.legal-company-box p:last-child {
  margin-bottom: 0;
}

.legal-placeholder {
  background: #fff4d6;
  border-left: 4px solid #f47c20;
  padding: 12px 14px;
  color: #7c4a00 !important;
  margin-top: 16px !important;
  font-weight: 700;
}

@media (max-width: 700px) {

  .legal-hero,
  .legal-section {
    padding: 65px 24px;
  }

  .legal-hero h1 {
    font-size: 40px;
  }

  .legal-content {
    padding: 32px 24px;
  }

  .legal-content h2 {
    font-size: 22px;
  }
}/* =========================================
   404 PAGE
========================================= */

.error-page {
  min-height: 650px;
  background:
    radial-gradient(circle at 80% 30%, rgba(43,199,102,0.12), transparent 28%),
    linear-gradient(135deg, #081a2f, #0b2341, #123b69);
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 90px 32px;
}

.error-page-inner {
  max-width: 800px;
}

.error-page h1 {
  font-size: 56px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.error-page-inner > p:not(.section-kicker) {
  color: #dbe4ef;
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-dark {
  background: #ffffff;
  color: #0b2341;
}

.btn-dark:hover {
  background: #f47c20;
  color: #ffffff;
}

@media (max-width: 700px) {

  .error-page {
    min-height: 540px;
    padding: 70px 24px;
  }

  .error-page h1 {
    font-size: 40px;
  }
}