/* ═══════════════════════════════════════════
   Service Pages — Shared Styles
   xauracode.com
═══════════════════════════════════════════ */

/* ── Hero ── */
.svc-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 400px at 80% 40%, rgba(208,255,20,.05), transparent 70%);
  pointer-events: none;
}
.svc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(208,255,20,.08);
  border: 1px solid rgba(208,255,20,.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.svc-hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.svc-h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}
.svc-lead {
  font-size: 1.05rem;
  color: var(--muted-2);
  max-width: 560px;
  line-height: 1.75;
}
.svc-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 36px 0;
}
.svc-hero-stats .stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  display: block;
}
.svc-hero-stats .stat-lbl {
  font-size: .78rem;
  color: var(--muted);
}
.svc-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.svc-hero-img-wrap {
  position: relative;
}
.svc-hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.svc-hero-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,255,20,.08), transparent 70%);
}

/* ── Section Shared ── */
.sp-section { padding: 80px 0; }
.sp-section + .sp-section { border-top: 1px solid var(--border); }
.sp-tag {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}
.sp-h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.sp-desc {
  color: var(--muted-2);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 580px;
}

/* ── Why Choose Cards ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color .25s, transform .25s;
}
.why-card:hover {
  border-color: rgba(208,255,20,.35);
  transform: translateY(-3px);
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(208,255,20,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  font-size: .83rem;
  color: var(--muted-2);
  line-height: 1.65;
  margin: 0;
}

/* ── Deliverables ── */
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.deliver-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.deliver-item i {
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
}
.deliver-item h4 {
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.deliver-item p {
  font-size: .8rem;
  color: var(--muted-2);
  margin: 0;
  line-height: 1.55;
}

/* ── Process ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 0; right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
@media (max-width: 768px) {
  .process-steps { gap: 20px; }
  .process-steps::before { display: none; }
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 auto 16px;
  transition: border-color .25s, background .25s;
}
.process-step:hover .process-num {
  border-color: var(--green);
  background: rgba(208,255,20,.08);
}
.process-step h4 {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: .78rem;
  color: var(--muted-2);
  line-height: 1.6;
  margin: 0;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  position: relative;
  transition: border-color .25s;
}
.pricing-card.featured {
  border-color: rgba(208,255,20,.4);
  background: rgba(208,255,20,.03);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: #000;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-size: .78rem;
  font-family: var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.pricing-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.pricing-price sup { font-size: .9rem; font-weight: 600; vertical-align: super; }
.pricing-price span { font-size: .8rem; font-weight: 400; color: var(--muted); }
.pricing-tagline {
  font-size: .8rem;
  color: var(--muted-2);
  margin: 10px 0 20px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pricing-features li {
  font-size: .82rem;
  color: var(--muted-2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--green); font-size: .7rem; }

/* ── Tech Stack ── */
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.tech-pill {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: .82rem;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, color .2s;
}
.tech-pill:hover {
  border-color: rgba(208,255,20,.3);
  color: var(--text);
}
.tech-pill i { color: var(--green); }

/* ── FAQ ── */
.faq-list { margin-top: 40px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(208,255,20,.25); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--text);
  font-size: .92rem;
  font-weight: 600;
}
.faq-q .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: .8rem;
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-q .faq-icon {
  transform: rotate(45deg);
  background: rgba(208,255,20,.15);
}
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: .87rem;
  color: var(--muted-2);
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ── CTA Strip ── */
.sp-cta-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
}
.sp-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 50% 100%, rgba(208,255,20,.06), transparent 70%);
  pointer-events: none;
}
.sp-cta-strip h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.sp-cta-strip p {
  color: var(--muted-2);
  font-size: .92rem;
  max-width: 480px;
  margin: 0 auto 28px;
}
.sp-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Breadcrumb ── */
.sp-breadcrumb {
  padding: 20px 0 0;
  font-size: .8rem;
  color: var(--muted);
}
.sp-breadcrumb a { color: var(--muted); transition: color .2s; }
.sp-breadcrumb a:hover { color: var(--green); }
.sp-breadcrumb span { margin: 0 6px; }

/* ── Local areas ── */
.areas-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.area-tag {
  font-size: .78rem;
  color: var(--muted-2);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}
