:root {
  --cs-bg: #ffffff;
  --cs-muted: #5f6375;
  --cs-text: #10162f;
  --cs-border: rgba(16, 22, 47, 0.08);
  --cs-orange: #ff6a00;
  --cs-orange-light: #ff914d;
}

.custom-service {
  padding: 80px 24px;
  background: var(--cs-bg);
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.cs-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.cs-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cs-orange);
  font-size: 0.85rem;
}

.cs-head h2 {
  font-size: 2.4rem;
  margin: 12px 0;
  color: var(--cs-text);
}

.cs-head p {
  color: var(--cs-muted);
  margin: 0;
  line-height: 1.8;
}

.cs-carousel {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  padding: 0;
  box-sizing: border-box;
}

.cs-track {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 16px 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.cs-card {
  flex: 0 0 380px;
  width: 380px;
  min-height: 420px;
  text-align: center;
  padding: 48px 40px;
  border-radius: 32px;
  background: transparent;
  border: 3px solid transparent;
  position: relative;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  cursor: pointer;
  box-sizing: border-box;
}

@media (max-width: 1280px) {
  .cs-carousel {
    max-width: 100%;
  }
  .cs-card {
    flex: 0 0 calc((100% - 48px - 24px) / 2);
    width: calc((100% - 48px - 24px) / 2);
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .cs-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}

.cs-card:hover {
  border-color: var(--cs-orange);
}

.cs-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  line-height: 1;
}

.cs-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.cs-icon .emoji-icon {
  font-size: 48px;
  line-height: 1;
  display: block;
}

.cs-card h3 {
  margin: 12px 0;
  color: var(--cs-text);
  font-size: 1.4rem;
}

.cs-card p {
  margin: 0 0 20px;
  color: var(--cs-muted);
  line-height: 1.7;
  flex: 1;
}

.cs-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--cs-text);
  font-weight: 500;
  align-items: center;
}

.cs-card ul li {
  display: inline-flex;
  align-items: center;
}

.cs-card ul li::before {
  content: "•";
  margin-right: 6px;
  color: var(--cs-orange);
}


.cs-cta {
  max-width: 1200px;
  margin: 48px auto 0;
  border-radius: 28px;
  padding: 40px 48px;
  background: #10162f;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.cs-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.4), transparent 55%);
  pointer-events: none;
}

.cs-cta-copy {
  position: relative;
  max-width: 520px;
  z-index: 1;
}

.cs-cta-copy .eyebrow {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}

.cs-cta h3 {
  margin: 6px 0 12px;
  font-size: 1.8rem;
}

.cs-cta p {
  margin: 0;
  opacity: 0.85;
}

.cs-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.custom-service .btn {
  border-radius: 999px;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-service .btn.primary {
  background: linear-gradient(135deg, var(--cs-orange), var(--cs-orange-light));
  color: #fff;
  border: none;
}

.custom-service .btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.custom-service .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .custom-service {
    padding: 60px 16px;
  }
  .cs-card {
    flex: 0 0 90%;
  }
  .cs-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

