/* ===== SERVICE DETAIL PAGE ===== */

/* Breadcrumb */
.breadcrumb {
  padding: 0.9rem 3rem;
  background: #f9f8ff;
  border-bottom: 1px solid rgba(108,99,255,0.08);
  font-size: 0.78rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb a { color: #6C63FF; font-weight: 600; transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb-sep { color: #ccc; }

/* ===== SERVICE HERO ===== */
.svc-hero {
  background: #0f0e17;
  padding: 5.5rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.22) 0%, rgba(147,51,234,0.08) 45%, transparent 70%);
  top: -200px; right: -120px;
  pointer-events: none;
  animation: aurora 14s ease-in-out infinite;
}
.svc-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.svc-hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.svc-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(108,99,255,0.15);
  color: #a89fff;
  font-size: 0.69rem;
  font-weight: 700;
  padding: 0.38rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(108,99,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.svc-hero h1 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -1.8px;
  color: #fff;
  margin-bottom: 1.2rem;
}
.svc-hero h1 span {
  background: linear-gradient(135deg, #9188FF 0%, #c084fc 60%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-hero-sub {
  font-size: 1.05rem;
  color: #7a7a9a;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 2.4rem;
}
.svc-hero-btns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, #6C63FF 0%, #9188FF 100%);
  color: #fff;
  padding: 0.82rem 1.9rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(108,99,255,0.42);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(108,99,255,0.55);
  background: linear-gradient(135deg, #7c73ff 0%, #a09aff 100%);
}
.btn-secondary {
  color: #888;
  padding: 0.82rem 1.7rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: all 0.22s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.38); color: #fff; background: rgba(255,255,255,0.05); }

/* ===== ABOUT SECTION ===== */
.svc-about {
  padding: 6rem 3rem;
  background: #fff;
}
.svc-about-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
  max-width: 1200px;
}
.svc-about-text .sec-eyebrow { margin-bottom: 0.7rem; }
.svc-about-text h2 {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #0f0e17;
  line-height: 1.18;
  margin-bottom: 1.3rem;
}
.svc-about-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.svc-about-visual {
  background: linear-gradient(160deg, #f4f2ff 0%, #f9f8ff 100%);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(108,99,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 40px rgba(108,99,255,0.08);
}
.about-stat-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(108,99,255,0.07);
  transition: all 0.22s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.about-stat-row:hover {
  transform: translateX(4px);
  border-color: rgba(108,99,255,0.2);
  box-shadow: 0 4px 20px rgba(108,99,255,0.1);
}
.about-stat-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #EEF2FF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-stat-val { font-size: 1.35rem; font-weight: 800; color: #0f0e17; line-height: 1; letter-spacing: -0.3px; }
.about-stat-lbl { font-size: 0.73rem; color: #888; margin-top: 3px; }

/* ===== WHAT WE OFFER ===== */
.svc-offer {
  padding: 6rem 3rem;
  background: #f9f8ff;
}
.svc-offer-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.svc-offer-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #0f0e17;
  margin-top: 0.5rem;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.offer-card {
  background: #fff;
  border-radius: 22px;
  padding: 2.1rem 1.85rem;
  border: 1px solid rgba(108,99,255,0.07);
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6C63FF, #c084fc);
  opacity: 0;
  transition: opacity 0.28s;
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(108,99,255,0.13), 0 6px 16px rgba(0,0,0,0.06);
  border-color: rgba(108,99,255,0.15);
}
.offer-card:hover::before { opacity: 1; }
.offer-icon {
  width: 50px; height: 50px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.offer-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f0e17;
  margin-bottom: 0.55rem;
  letter-spacing: -0.2px;
}
.offer-card > p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.3rem;
}
.offer-list-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}
.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.offer-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #444;
}
.offer-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== WHY CHOOSE US ===== */
.svc-why {
  padding: 6rem 3rem;
  background: #0f0e17;
  position: relative;
  overflow: hidden;
}
.svc-why::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.svc-why::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.14) 0%, transparent 65%);
  bottom: -200px; left: -100px;
  pointer-events: none;
}
.svc-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
.svc-why-left .sec-eyebrow { color: #a89fff; }
.svc-why-left .sec-eyebrow::before { background: linear-gradient(90deg, #a89fff, #6C63FF); }
.svc-why-left h2 {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #fff;
  line-height: 1.18;
  margin-top: 0.5rem;
  margin-bottom: 1.1rem;
}
.svc-why-left p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.75;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.why-list-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  font-size: 0.88rem;
  color: #bbb;
  font-weight: 500;
  transition: all 0.22s;
}
.why-list-item:hover {
  background: rgba(108,99,255,0.1);
  border-color: rgba(108,99,255,0.28);
  color: #fff;
  transform: translateX(4px);
}
.why-check {
  width: 28px; height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(108,99,255,0.3), rgba(147,51,234,0.2));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(108,99,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .svc-about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .svc-why-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .breadcrumb { padding: 0.75rem 1.5rem; }
  .svc-hero { padding: 4rem 1.5rem 3.5rem; }
  .svc-hero h1 { font-size: 2.1rem; letter-spacing: -1px; }
  .svc-about { padding: 4rem 1.5rem; }
  .svc-offer { padding: 4rem 1.5rem; }
  .svc-why { padding: 4rem 1.5rem; }
  .offer-grid { grid-template-columns: 1fr; }
}
