*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand: #0d9eda;
  --brand-dark: #006fa0;
  --brand-light: #e6f6fd;
  --brand-mid: #b3e2f4;
  --white: #ffffff;
  --gray-100: #f7f9fb;
  --gray-200: #eef1f5;
  --gray-400: #9ba7b4;
  --gray-600: #000000;
  --gray-800: #1e2a38;
  --text: #1a2433;
  --text-muted: #000000;
}


.copilot-consulting-services .btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 14px 28px;
  border-radius: 7px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
	text-decoration: none !important;
}

.copilot-consulting-services .btn-primary:hover {
  background: var(--brand-dark) !important;
  text-decoration: none;
  transform: translateY(-1px);
  color: #fff !important;
}

.copilot-consulting-services .btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 7px;
  border: 1.5px solid #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
	text-decoration: none !important;
}

.copilot-consulting-services .btn-secondary:hover {
  background: var(--brand-light);
  text-decoration: none;
  transform: translateY(-1px);
}

/* SECTION HEADERS */
.copilot-consulting-services .section-tag {
  display: inline-block;
  background: #282828;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.copilot-consulting-services .section-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  line-height: 1.25;
}

.copilot-consulting-services .section-title em {
  font-style: normal;
  color: var(--brand);
}

.copilot-consulting-services .section-desc {
  font-size: 17px;
  color: #fff;

  margin-bottom: 40px;
  line-height: 1.65;
}

/* CHALLENGES */
.copilot-consulting-services .challenges {
  background: #f5f5f5;
}


.copilot-consulting-services .challenges .section-title {
  color: #000;
}

.copilot-consulting-services .challenges .section-desc {
  color: #000;
}

.copilot-consulting-services .challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
  gap: 20px;
  margin-bottom: 44px;
}

.copilot-consulting-services .challenge-card {
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, .1);
  border-radius: 10px;
  padding: 24px;
  border-top: 3px solid var(--brand);
}

.copilot-consulting-services .challenge-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
  line-height: 22px;
}

.copilot-consulting-services .challenge-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}


/* SERVICES */
.copilot-consulting-services .services {
  background: #161f2d;
}

.copilot-consulting-services .services .section-tag {
  background: #fff;
  color: #000;
}

.copilot-consulting-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}

.copilot-consulting-services .service-card {
  background: #fff;
  border: 1px solid #dde7f0;
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: left;
}

.copilot-consulting-services .service-card:hover {
  box-shadow: 0 8px 28px rgba(0, 148, 209, 0.1);
  transform: translateY(-2px);
}

.copilot-consulting-services .service-num {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 36px;
  margin-bottom: 16px;
}

.copilot-consulting-services .service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0070ab;
  margin-bottom: 12px;
  line-height: normal;
}

.copilot-consulting-services .service-card ul {
  list-style: none;
  margin-bottom: 16px;
}

.copilot-consulting-services .service-card ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.copilot-consulting-services .service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}

.copilot-consulting-services .outcome {
  background: #f5f5f5;
  color: #006633;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 7px;
  font-family: "Inter", sans-serif;
}

.copilot-consulting-services .outcome strong {
  font-weight: 700;
}

.copilot-consulting-services .services-cta {
  text-align: center;
  margin-top: 12px;
}


/* USE CASES */
.copilot-consulting-services .usecases {
  background: #fff;
}

.copilot-consulting-services .usecases .section-title {
  color: #000;
}

.copilot-consulting-services .usecases .section-desc {
  color: #000;
}


.copilot-consulting-services .usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-bottom: 44px;
}

.copilot-consulting-services .usecase-card {
  background: #e8f6fc;
  border: 1px solid #666;
  border-radius: 10px;
  padding: 15px;
  text-align: left;
}

.copilot-consulting-services .usecase-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}

.copilot-consulting-services .usecase-card li {
  font-size: 14px;
  color: var(--text-muted);
  list-style: none;
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}

.copilot-consulting-services .usecase-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: 50%;
}


/* SECURITY */
.copilot-consulting-services .security {
  background: #0070ab;
  padding: 72px 5%;
}

.copilot-consulting-services .security .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.copilot-consulting-services .security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.copilot-consulting-services .security h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.copilot-consulting-services .security p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 28px;
}

.copilot-consulting-services .security-list {
  list-style: none;
  margin-bottom: 34px;
}

.copilot-consulting-services .security-list li {
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  font-size: 15px;
}

.copilot-consulting-services .security-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.copilot-consulting-services .btn-white {
  background: #feb200;
  color: #000;
  padding: 13px 26px;
  border-radius: 7px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: transform 0.15s, background 0.2s;
	text-decoration: none !important;
}

.copilot-consulting-services .btn-white:hover {
  text-decoration: none;
  background: #e6f6fd;
  transform: translateY(-1px);
}

.copilot-consulting-services .security-text {
  text-align: left;
}

.copilot-consulting-services .security-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.copilot-consulting-services .stat-box {
  background: #fff;
  border-left: 3px solid #feb200;
  border-radius: 10px;
  padding: 22px;
  text-align: left;
}

.copilot-consulting-services .stat-box .stat-num {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 6px;
}

.copilot-consulting-services .stat-box .stat-label {
  font-size: 15px;
  color: #000;
  line-height: 1.4;
}

/* APPROACH */
.copilot-consulting-services .approach {
  background: #f5f5f5;
}

.copilot-consulting-services .approach .section-desc {
  color: #000;
}

.copilot-consulting-services .approach .section-title {
  color: #000;
}

.copilot-consulting-services .approach .section-title {
  color: #000;
}

.copilot-consulting-services .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 44px;
}

.copilot-consulting-services .steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #bbbbbb;
  z-index: 0;
}

.copilot-consulting-services .step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.copilot-consulting-services .step-num {
  width: 76px;
  height: 76px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 2px solid #fff;
  padding: 18px;
  position: relative;
  box-shadow: 0 3px 15px rgba(0, 0, 0, .3);
}

.copilot-consulting-services .step-num .number {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
  border-radius: 50%;
  color: #282828;
  padding: 5px;
  font-size: 12px;
}

.copilot-consulting-services .step-num img {
  width: 100%;
  max-width: 100%;

}

.copilot-consulting-services .step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.copilot-consulting-services .step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* OUTCOMES */
.copilot-consulting-services .outcomes {
  background: #161f2d;
}

.copilot-consulting-services .outcomes .section-tag {
  background: #fff;
  color: #000;
}

.copilot-consulting-services .outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;

}

.copilot-consulting-services .outcome-card {
  background: #fff;

  border-radius: 10px;
  padding: 26px 20px;
  text-align: center;

}

.copilot-consulting-services .outcome-big {
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: #0070ab;
  margin-bottom: 8px;
  line-height: 1;
}

.copilot-consulting-services .outcome-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* WHY */
.copilot-consulting-services .why {
  background: #f5f5f5;
}

.copilot-consulting-services .why .section-title {
  color: #000;
}

.copilot-consulting-services .why .section-desc {
  color: #000;
}


.copilot-consulting-services .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 44px;
}

.copilot-consulting-services .why-card {
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, .1);
  border-radius: 10px;
  padding: 12px;
  text-align: left;
  display: flex;
  align-items: center;
}

.copilot-consulting-services .why-icon {
  min-width: 40px;
  height: 40px;
  background: #f1f1f1;
  border-radius: 10px;
  margin: 0 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copilot-consulting-services .why-icon svg {
  width: 24px;
  height: 24px;
}

.copilot-consulting-services .why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.4;
}

/* CERTS */
.copilot-consulting-services .certs {
  background: #fff;
}

.copilot-consulting-services .certs .section-title {
  color: #000;
}

.copilot-consulting-services .certs .section-desc {
  color: #000;
}

.copilot-consulting-services .cert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  background: #e8f6fc;
  box-shadow: 0 3px 20px rgba(0, 0, 0, .1);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #666;
}

.copilot-consulting-services .cert-badge {
  max-width: 222px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0070ab;
  text-align: center;
  border-right: 1px solid #bbbbbb;
}

.copilot-consulting-services .cert-badge:last-child {
  border: none;
}

.copilot-consulting-services .cert-badge span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 10px;
}

/* CTA SECTION */
.copilot-consulting-services .cta-section {
  background: #0070ab;
  border-top: 1px solid #dde7f0;
  padding: 80px 5%;
  text-align: center;
}

.copilot-consulting-services .cta-section h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.copilot-consulting-services .cta-section h2 em {
  font-style: normal;
  color: #fff;
}

.copilot-consulting-services .cta-section p {
  font-size: 17px;
  color: #fff;
  max-width: 560px;
  margin: 0 auto 42px;
  line-height: 1.65;
}

.copilot-consulting-services .cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.copilot-consulting-services .cta-section .btn-primary {
  background: #fff;
  color: #000;
}

.copilot-consulting-services .cta-section .btn-primary:hover {
  background: #061e2b !important;
}

.copilot-consulting-services .cta-section .btn-secondary {
  background: #feb200;
  color: #000;
}

.copilot-consulting-services .cta-section .btn-secondary:hover {
  background: #ce9612;
  color: #fff !important;
}

/* INLINE CTA BARS */
.copilot-consulting-services .inline-cta {
  background: #282828;
  border: 1px solid var(--brand-mid);

  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.copilot-consulting-services .inline-cta p {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  margin: 0;
}

.copilot-consulting-services .inline-cta p span {
  color: #feb200;
  font-weight: 600;
}


@media (max-width: 1024px) {
  .copilot-consulting-services .cert-badge {
    max-width: 100%;
    border-bottom: 1px solid #666;
    border-right: 0;
    padding: 0 0 15px 0;
    text-align: left;
  }

  .copilot-consulting-services .cert-badge br {
    display: none;
  }


}


@media (max-width: 768px) {
  .copilot-consulting-services .security-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .copilot-consulting-services .steps {
    grid-template-columns: 1fr 1fr;
  }

  .copilot-consulting-services .steps::before {
    display: none;
  }

  .copilot-consulting-services .step {
    margin-bottom: 25px;
  }

  .copilot-consulting-services .inline-cta {
    justify-content: center;
  }


}

@media (max-width: 500px) {
  .copilot-consulting-services .steps {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 5%;
  }
}


.copilot-consulting-services .step1 {
  background: #f18b1c !important;
}

.copilot-consulting-services .step2 {
  background: #db5532 !important;
}

.copilot-consulting-services .step3 {
  background: #379d88 !important;
}

.copilot-consulting-services .step4 {
  background: #2e425b !important;
}

section {
    padding: 80px 20px;
}