/* ================================
   Services Page
================================ */

/* Main services wrapper */
.sys-services-page,
.sys-service-process {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Section heading */
.sys-section-head {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

/* Small label */
.sys-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(44, 116, 179, 0.1);
  color: #2c74b3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* Section title */
.sys-section-head h2 {
  margin: 0 0 16px;
  color: #0a2647;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
}

/* Section paragraph */
.sys-section-head p {
  margin: 0;
  color: #5f6f82;
  font-size: 18px;
  line-height: 1.8;
}

/* Services grid */
.sys-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Service card */
.sys-service-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e6edf5;
  box-shadow: 0 18px 45px rgba(10, 38, 71, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Service card decoration */
.sys-service-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(44, 116, 179, 0.08);
}

/* Service hover */
.sys-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(44, 116, 179, 0.35);
  box-shadow: 0 26px 65px rgba(10, 38, 71, 0.14);
}

/* Service icon */
.sys-service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
   
  font-size: 32px;
}

/* Service tag */
.sys-service-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #2c74b3;
  font-size: 14px;
  font-weight: 800;
}

/* Service title */
.sys-service-content h3 {
  margin: 0 0 14px;
  color: #0a2647;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
}

/* Service text */
.sys-service-content p {
  margin: 0 0 18px;
  color: #5f6f82;
  font-size: 16.5px;
  line-height: 1.8;
}

/* Service list */
.sys-service-content ul {
  margin: 0;
  padding-left: 20px;
  color: #203246;
}

/* Service list item */
.sys-service-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Process grid */
.sys-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Process box */
.sys-process-box {
  padding: 30px;
  border-radius: 24px;
  background: #f7faff;
  border: 1px solid #e6edf5;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Process hover */
.sys-process-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(10, 38, 71, 0.09);
}

/* Process number */
.sys-process-box span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #2c74b3;
  font-size: 28px;
  font-weight: 900;
}

/* Process title */
.sys-process-box h3 {
  margin: 0 0 12px;
  color: #0a2647;
  font-size: 22px;
  font-weight: 900;
}

/* Process text */
.sys-process-box p {
  margin: 0;
  color: #5f6f82;
  line-height: 1.7;
}

/* CTA section */
.sys-services-cta {
  padding: 40px 20px 90px;
}

/* CTA inner */
.sys-services-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 36px;
  border-radius: 34px;
  text-align: center;
  background: linear-gradient(135deg, #0a2647, #144b7d, #2c74b3);
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(10, 38, 71, 0.22);
}

/* CTA title */
.sys-services-cta-inner h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
}

/* CTA paragraph */
.sys-services-cta-inner p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

/* Main button */
.sys-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  background: #ffffff;
  color: #0a2647 !important;
  font-weight: 900;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Main button hover */
.sys-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.22);
}

/* Tablet */
@media (max-width: 900px) {
  .sys-services-grid,
  .sys-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .sys-services-page,
  .sys-service-process {
    padding: 60px 16px;
  }

  .sys-services-grid,
  .sys-process-grid {
    grid-template-columns: 1fr;
  }

  .sys-service-card,
  .sys-process-box {
    padding: 26px;
  }

  .sys-services-cta-inner {
    padding: 42px 22px;
  }
}