/* Consultate — identidad oficial (assets/branding) */
:root {
  --blue-deep: #003d8f;
  --blue: #0056d2;
  --blue-mid: #0078c8;
  --teal: #00a8b8;
  --teal-bright: #00c4c4;
  --ink: #0a1628;
  --text: #1a2d4a;
  --muted: #5a6f8c;
  --muted-light: #8fa3bc;
  --surface: #ffffff;
  --page: #f4f7fb;
  --page-alt: #eef3f9;
  --border: rgba(0, 86, 210, 0.1);
  --gradient-brand: linear-gradient(135deg, var(--blue) 0%, var(--teal-bright) 100%);
  --gradient-soft: linear-gradient(145deg, rgba(0, 86, 210, 0.08), rgba(0, 196, 196, 0.06));
  --shadow-sm: 0 8px 32px rgba(0, 61, 143, 0.08);
  --shadow-md: 0 20px 56px rgba(0, 61, 143, 0.12);
  --shadow-lg: 0 32px 80px rgba(0, 61, 143, 0.16);
  --radius: 24px;
  --radius-sm: 14px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(1160px, 90vw);
  margin-inline: auto;
}

/* —— Background —— */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--page);
  overflow: hidden;
}

.page-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.page-bg__glow--1 {
  width: 55vw;
  height: 55vw;
  max-width: 600px;
  max-height: 600px;
  top: -15%;
  right: -10%;
  background: rgba(0, 168, 184, 0.12);
}

.page-bg__glow--2 {
  width: 45vw;
  height: 45vw;
  max-width: 500px;
  max-height: 500px;
  bottom: 10%;
  left: -12%;
  background: rgba(0, 86, 210, 0.08);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 247, 251, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__consul {
  color: var(--blue-deep);
}

.brand__tate {
  color: var(--teal);
}

.brand__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s;
}

.nav__links a:hover {
  color: var(--blue);
}

.nav__account {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.nav__account:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 86, 210, 0.35);
  box-shadow: 0 6px 18px rgba(0, 86, 210, 0.15);
}

.nav__account-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* —— Hero —— */
.hero {
  padding: 3rem 0 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--blue-mid);
  margin: 0 0 1.25rem;
}

.hero__tagline::before,
.hero__tagline::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal));
}

.hero__tagline::after {
  background: linear-gradient(90deg, var(--teal), transparent);
}

.hero__tagline--contact {
  color: var(--teal);
}

.hero__tagline--contact::before {
  background: linear-gradient(90deg, transparent, var(--blue));
}

.hero__tagline--contact::after {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.hero__copy h1 {
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 1.25rem;
}

.hero__highlight {
  display: block;
  margin-top: 0.2em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 30rem;
  margin: 0 0 2rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 86, 210, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 12px 36px rgba(0, 86, 210, 0.45);
}

.btn--outline {
  background: var(--surface);
  color: var(--blue);
  border: 1.5px solid rgba(0, 86, 210, 0.25);
}

.btn--outline:hover {
  border-color: var(--blue);
  background: var(--page-alt);
}

.btn--jobs {
  background: linear-gradient(135deg, #176196 0%, #2a9d8f 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(23, 97, 150, 0.28);
}

.btn--jobs:hover {
  box-shadow: 0 12px 32px rgba(23, 97, 150, 0.38);
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero__frame {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  background: var(--gradient-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.hero__splash {
  width: min(100%, 440px);
  height: auto;
  border-radius: calc(var(--radius) - 8px);
}

.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--surface);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  z-index: 2;
  white-space: nowrap;
}

.hero__float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
}

.hero__float--1 {
  top: 12%;
  left: 0;
  animation: float 5s ease-in-out infinite;
}

.hero__float--2 {
  bottom: 14%;
  right: 0;
  animation: float 5s ease-in-out infinite 1.2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* —— Trust —— */
.trust {
  padding: 1.25rem 0;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.trust__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.trust__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.trust__text strong {
  color: var(--blue);
  font-weight: 700;
}

/* —— Sections —— */
.section {
  padding: 5rem 0;
}

.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section__label--light {
  color: rgba(255, 255, 255, 0.55);
}

.section__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section__head--left {
  text-align: left;
  margin-left: 0;
  max-width: 440px;
}

.section__head h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section__head p {
  margin: 0;
  color: var(--muted);
}

/* —— Features —— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 2rem 1.75rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature:hover::before {
  opacity: 1;
}

.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gradient-soft);
  color: var(--blue);
  margin-bottom: 1.15rem;
}

.feature__icon svg {
  width: 24px;
  height: 24px;
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* —— Roles (dark brand section) —— */
.section--brand {
  background: var(--ink);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section--brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 86, 210, 0.25), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(0, 196, 196, 0.15), transparent 45%);
  pointer-events: none;
}

.roles__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.roles__logo {
  width: min(100%, 300px);
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
}

.roles__intro h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.roles__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 28rem;
}

.role-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.role-card {
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s;
}

.role-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 196, 196, 0.35);
}

.role-card__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal-bright);
  display: block;
  margin-bottom: 0.35rem;
}

.role-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.role-card p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* —— Timeline —— */
.timeline {
  position: relative;
  max-width: 620px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--teal-bright));
  opacity: 0.35;
}

.timeline__item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.25rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__step {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.timeline__item h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.timeline__item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* —— Contact —— */
.section--contact {
  padding-bottom: 5rem;
}

.contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact__logo {
  width: min(240px, 40vw);
  height: auto;
}

.contact__tagline {
  height: 24px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.contact__content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.contact__content p {
  margin: 0;
  color: var(--muted);
  max-width: 28rem;
  line-height: 1.7;
}

/* —— Footer —— */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__tagline-text {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue-mid);
  text-transform: lowercase;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--muted-light);
  margin: 0;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--blue);
}

.footer__discreet {
  opacity: 0.35;
  transition: opacity 0.2s;
}

.footer__discreet:hover {
  opacity: 0.75;
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    min-height: auto;
  }

  .hero__float {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .roles__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .contact__brand {
    display: flex;
    justify-content: center;
  }

  .contact__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .nav__toggle {
    display: flex;
    order: 2;
  }

  .nav__account {
    order: 1;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: auto;
    min-width: min(280px, 88vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: none;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .nav__links a:hover {
    background: var(--page-alt);
  }

  .nav {
    flex-wrap: nowrap;
  }

  .nav__actions {
    margin-left: auto;
  }

  .hero {
    padding-top: 2rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}

/* Trabajo — domiciliarios */
.section--jobs {
  background: var(--page-alt);
}

.jobs {
  display: grid;
  gap: 2rem;
  max-width: 720px;
}

.jobs--unified {
  max-width: 960px;
}

.jobs-page__container--wide {
  max-width: 720px;
}

@media (min-width: 768px) {
  .jobs-page__container--wide {
    max-width: 820px;
  }
}

.jobs__intro h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--ink);
}

.jobs__lead {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
}

.jobs__meta {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}

.jobs__jump,
.jobs__cta {
  margin-top: 1.25rem;
  width: fit-content;
}

/* Página dedicada del formulario */
.jobs-page__main {
  padding: 6rem 0 4rem;
  min-height: calc(100vh - 8rem);
}

.jobs-page__container {
  max-width: 560px;
}

.jobs-page__title {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--ink);
}

.jobs-page__form {
  margin-top: 0;
}

.jobs__form-panel[hidden] {
  display: none !important;
}

.jobs__form-panel {
  margin-top: 1.5rem;
}

.jobs__form-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.jobs__form-back {
  justify-self: start;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brand);
  cursor: pointer;
}

.jobs__form-back:hover {
  text-decoration: underline;
}

.jobs__form-region {
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: var(--page-alt);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
}

.site-footer--compact {
  padding: 1.5rem 0;
}

.site-footer--compact .footer {
  justify-content: center;
}

.jobs__closed a {
  color: var(--blue);
  font-weight: 600;
}

.jobs__form,
.surface-card-like {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
}

.jobs__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.jobs__form input,
.jobs__form select,
.jobs__form textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.jobs__form select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23176196' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
}

.jobs__form input:focus,
.jobs__form select:focus,
.jobs__form textarea:focus {
  outline: 2px solid rgba(0, 86, 210, 0.2);
  border-color: rgba(0, 86, 210, 0.45);
}

.jobs__legal-consent {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 500 !important;
  font-size: 0.82rem !important;
  line-height: 1.45;
  color: var(--muted) !important;
}

.jobs__legal-consent input[type="checkbox"] {
  margin-top: 0.15rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  padding: 0;
}

.jobs__legal-consent a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

.jobs__feedback {
  font-size: 0.88rem;
  font-weight: 600;
}

.jobs__feedback.is-ok {
  color: #2a7560;
}

.jobs__feedback.is-error {
  color: #c44c4c;
}

.jobs__closed {
  color: var(--muted);
  font-weight: 600;
}

.jobs__toolbar {
  margin-top: 1rem;
}

.jobs__filter {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  max-width: 360px;
}

.jobs__filter select {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  appearance: none;
  cursor: pointer;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23176196' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
}

.jobs__regions {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.jobs__region-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-sm);
}

.jobs__region-card-title {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
  font-size: 1rem;
}

.jobs__region-card-desc {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.jobs__region-card-meta {
  margin: 0.5rem 0 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue);
}

.jobs__region-card-btn {
  margin-top: 0.85rem;
  width: 100%;
}

.jobs__regions-empty {
  color: var(--muted);
  font-size: 0.9rem;
}

.jobs__toolbar--unified {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 1.25rem;
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.jobs__type-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.jobs__type-btn {
  border: 1px solid var(--border);
  background: var(--page-alt);
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.jobs__type-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.jobs__type-btn.is-active {
  background: linear-gradient(135deg, #176196 0%, #2a9d8f 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(23, 97, 150, 0.22);
}

.jobs__summary {
  margin: 1rem 0 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
}

.jobs__regions--grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .jobs__regions--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.jobs__region-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 2.35rem;
}

.jobs__region-card--courier {
  border-top: 3px solid #176196;
}

.jobs__region-card--pharmacy {
  border-top: 3px solid #2a9d8f;
}

.jobs__badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.jobs__badge--courier {
  background: #e6f0f7;
  color: #176196;
}

.jobs__badge--pharmacy {
  background: #dcebe6;
  color: #2a7560;
}

.jobs__region-card-kind {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jobs__form-title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.jobs__form-badge {
  position: static;
  width: fit-content;
  margin-bottom: 0.35rem;
}
