/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(29,108,208,.08);
  padding: 12px 0;
  margin-top: 70px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--blue);
  font-weight: 500;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span:last-child { color: var(--text); font-weight: 500; }

/* ===== SERVICE PAGE HERO ===== */
.sp-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #1455a8 60%, #0e3d80 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.sp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 350px at 85% 15%, rgba(255,208,59,.12) 0%, transparent 70%);
  pointer-events: none;
}

.sp-hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 2;
}

.sp-hero-content {
  flex: 1;
  min-width: 0;
}

.sp-hero-content .section-badge {
  background: rgba(255,208,59,.2);
  color: var(--yellow);
  border: 1px solid rgba(255,208,59,.35);
}

.sp-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 16px 0 18px;
}

.sp-hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.sp-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sp-hero-img {
  flex: 0 0 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  border: 3px solid rgba(255,255,255,.15);
  aspect-ratio: 4/3;
}
.sp-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SP FEATURES ===== */
.sp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.sp-feature {
  background: var(--white);
  border: 1px solid rgba(29,108,208,.09);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: all .25s;
}
.sp-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sp-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.sp-feature h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.sp-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== OTHER SERVICES ===== */
.other-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.other-service-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(29,108,208,.1);
  transition: all .25s;
  text-decoration: none;
}
.other-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.other-service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.other-service-card:hover img { transform: scale(1.05); }
.other-service-card span {
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .sp-hero-img { flex: none; width: 100%; max-width: 440px; }
}

@media (max-width: 768px) {
  .sp-hero { padding: 48px 0 56px; }
  .sp-hero-inner { flex-direction: column; gap: 36px; }
  .sp-hero-img { max-width: 100%; aspect-ratio: 16/9; }
  .sp-hero-content h1 { font-size: 1.9rem; }
  .sp-hero-btns { flex-direction: column; }
  .sp-hero-btns .btn { justify-content: center; }
}
