/* ================================================
   Mendoxa – Service Pages Common Styles
   ================================================ */

.service-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  background: var(--bg-primary);
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(0, 212, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, black 50%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent);
}

.service-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.service-hero__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--gradient-glow);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--accent-cyan);
}

.service-hero__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.service-hero__lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 500;
}

.service-breadcrumbs {
  padding: 24px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.service-breadcrumbs a {
  color: var(--text-secondary);
  transition: color 0.3s;
}

.service-breadcrumbs a:hover {
  color: var(--accent-cyan);
}

.service-breadcrumbs span {
  margin: 0 8px;
  opacity: 0.5;
}

.service-detail {
  padding: 80px 0;
  background: var(--bg-primary);
}

.service-detail__content {
  max-width: 860px;
  margin: 0 auto;
}

.service-detail h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: #fff;
}

.service-detail h2:first-child {
  margin-top: 0;
}

.service-detail h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--accent-cyan);
}

.service-detail p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
  font-size: 16px;
}

.service-detail ul {
  list-style: none;
  margin-bottom: 32px;
}

.service-detail li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.7;
}

.service-detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2300d4ff" stroke-width="2"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.value-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-card h4::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.value-card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.service-cta {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.service-cta h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
}

.service-cta p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 16px;
}
