/* ── Gou service pages — hybrid editorial + retro accents ── */

body.tech-surface[data-i18n-page="equipo"] {
  --service-accent: #2b9348;
  --service-accent-soft: rgba(43, 147, 72, 0.1);
  --service-shadow: rgba(43, 147, 72, 0.35);
}

body.tech-surface[data-i18n-page="talent"] {
  --service-accent: #e85d04;
  --service-accent-soft: rgba(232, 93, 4, 0.1);
  --service-shadow: rgba(232, 93, 4, 0.35);
}

body.tech-surface[data-i18n-page="startups"] {
  --service-accent: #4a87ff;
  --service-accent-soft: rgba(74, 135, 255, 0.1);
  --service-shadow: rgba(74, 135, 255, 0.35);
}

body.tech-surface[data-i18n-page="empresas"] {
  --service-accent: #8b6fff;
  --service-accent-soft: rgba(139, 111, 255, 0.1);
  --service-shadow: rgba(139, 111, 255, 0.35);
}

/* ── Service hero ── */
.page-hero--service .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--surface);
  color: var(--ink);
  margin-bottom: 20px;
}

.page-hero--service h1 {
  position: relative;
  padding-bottom: 18px;
}

.page-hero--service h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(120px, 40%);
  height: 4px;
  background: var(--service-accent);
  box-shadow: 2px 2px 0 var(--ink);
}

/* ── Service card (extends info-card, outcome, mode-card, pay-block) ── */
.service-card {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 28px 24px 24px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--service-accent);
}

.service-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Press Start 2P", var(--font-mono);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
  background: var(--service-accent-soft);
  border: 2px solid var(--ink);
  padding: 6px 8px;
  margin-bottom: 14px;
  box-shadow: 2px 2px 0 var(--ink);
}

.service-card h3,
.service-card strong {
  color: var(--ink);
}

.service-card p,
.service-card li {
  color: var(--text);
}

.service-card--wide {
  padding-top: 32px;
}

.service-card--compact {
  padding: 22px 20px 20px;
}

.service-card--compact .btn {
  min-height: 44px;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .service-card:focus-within {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--ink);
  }

  .service-card[data-tilt]:hover {
    transform: none;
  }
}

/* Info / outcome cards with service styling */
.info-card.service-card,
.outcome.service-card {
  border-radius: 0;
}

.info-card.service-card h3,
.outcome.service-card h3 {
  font-size: 18px;
  margin-top: 0;
}

/* Mode cards */
.mode-card.service-card {
  background: var(--surface);
}

.mode-card.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mode-card.service-card li {
  border-bottom-color: var(--border);
}

.mode-card.service-card .mode-card__for {
  color: var(--service-accent);
  font-weight: 600;
}

.mode-card--featured.service-card {
  border-color: var(--service-accent);
  box-shadow: 3px 3px 0 var(--ink), 0 0 0 1px var(--service-accent);
  background: linear-gradient(180deg, var(--service-accent-soft) 0%, var(--surface) 40%);
}

.mode-card--featured.service-card::before {
  height: 6px;
}

/* Pay block as service card */
.pay-block.service-card {
  margin-top: 24px;
}

.pay-block.service-card h3 {
  margin-top: 0;
}

/* ── Expect boxes (startups) ── */
.service-expect {
  border-radius: 0;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 28px 24px;
}

.service-expect h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: var(--ink);
}

.service-expect h2::before {
  flex-shrink: 0;
  font-family: "Press Start 2P", var(--font-mono);
  font-size: 8px;
  line-height: 1.3;
  padding: 6px 8px;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

.expect-box--yes.service-expect {
  background: rgba(0, 180, 100, 0.06);
  border-color: var(--ink);
}

.expect-box--yes.service-expect h2::before {
  content: "[OK]";
  background: rgba(0, 180, 100, 0.15);
  color: #0a7a45;
}

.expect-box--no.service-expect {
  background: rgba(15, 15, 15, 0.03);
}

.expect-box--no.service-expect h2::before {
  content: "[NO]";
  background: rgba(15, 15, 15, 0.06);
  color: var(--muted);
}

.service-expect ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-expect li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.45;
}

.service-expect li::before {
  position: absolute;
  left: 0;
  top: 13px;
  font-family: "VT323", var(--font-mono);
  font-size: 18px;
  line-height: 1;
}

.expect-box--yes.service-expect li::before {
  content: ">";
  color: #0a9a55;
}

.expect-box--no.service-expect li::before {
  content: "x";
  color: var(--muted);
}

.service-expect li:last-child {
  border-bottom: none;
}

/* ── Timeline (empresas process) ── */
.service-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  padding-left: 8px;
}

.service-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--ink);
  opacity: 0.2;
}

.service-step {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 2px 2px 0 var(--ink);
  padding: 20px 22px;
  margin-bottom: 16px;
}

.service-step:last-child {
  margin-bottom: 0;
}

.service-step > span,
.service-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Press Start 2P", var(--font-mono);
  font-size: 8px;
  background: var(--service-accent);
  color: var(--on-accent);
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  border-radius: 0;
}

.service-timeline .process-client__step span {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: var(--service-accent);
  font-weight: 400;
  font-size: 8px;
}

.service-step strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 4px;
}

.service-step p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Demo link cards */
.demo-link-card.service-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.demo-link-card.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
  min-height: 44px;
}

/* Section accents */
body.tech-surface[data-i18n-page] .section__head .eyebrow {
  color: var(--service-accent);
  font-weight: 700;
}

.equipo-teaser {
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--surface);
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}

.equipo-teaser a {
  font-weight: 700;
  color: var(--service-accent, var(--ink));
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: none;
  }
}
