/* ============================================================
   SERVICE-PAGE.CSS — Shared styles for all service pages
   LAJ Productores
   ============================================================ */

/* ── Service Hero ── */
.service-hero {
  background: var(--black);
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 75% at 75% 50%, rgba(26,47,79,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 10% 80%, rgba(37,99,235,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.service-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.breadcrumb a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.18); }

.service-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.service-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 2.25rem;
  max-width: 560px;
}

/* ── Coverage Section ── */
.section-coverage { background: var(--off-white); }

/* ── Audience Section ── */
.section-audience { background: var(--white); }

.audience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── How to Hire ── */
.section-hire {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.section-hire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(37,99,235,0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Why LAJ ── */
.section-why { background: var(--off-white); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Service CTA ── */
.section-service-cta {
  background: var(--black);
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}

.section-service-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.service-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .service-hero { padding: 130px 0 70px; }
  .audience-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
