/* ── VARIABLES ────────────────────────────────────── */
:root {
  --c-bg: #23252A;
  --c-fondo: #0d1420;
  --c-surface: #1b2435;
  --c-border: #0F2D5E;
  --c-accent: #007aff;
  --c-accentA: #ffc605;
  --c-accentN: #95BF3B;
  --c-accent2: #7b61ff;
  --c-accent3: #ff4d6d;
  --c-accent4: #A8C8F0;
  --c-accent5: #c0e890;
  --c-accent6: #f8e090;
  --c-accent7: #f8c0c8;
  --c-text: #E6EDF7;
  --c-muted: #9aa6bd;
  --c-white: #ffffff;
  --c-azul: #d8e8f5;
  /* ── Colores BEYSERIN ────────────────────────────────────── */
  --c-red-primary: #F21D44;
  --c-blue-primary: #048ABF;
  --c-blue-bright: #1fb6ff;
  --c-green-lime: #95BF3B;
  --c-yellow-gold: #F2B807;
  --c-red-soft: #F25E5E;
  --c-red-low: #ff4069;

  --font-head: 'Poppins', sans-serif;
  --font-mono: 'Urbanist', monospace;
  --font-body: 'Urbanist', sans-serif;
  --radius: 12px;
  --radius-lg: 24px;
  --trans: 0.3s cubic-bezier(.4, 0, .2, 1);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--c-red-fondo);
  border: 1px solid var(--c-red-fondo);
  border-radius: 100px;
  padding: .3rem 1rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--c-accent7);
  margin-bottom: 2rem;
  animation: fadeUp .6s ease both;
}

.mono {
  font-family: var(--font-mono);
  font-size: .8em;
}

.tag-dot {
  width: 7px;
  height: 7px;
  background: var(--c-accent7);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.7);
  }
}


@keyframes tableHeaderSweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}
/* ── colores de texto ─────────────────────────────────────────── */
.c-red {
  color: #E81B2E;
  text-shadow: 0 0 12px rgba(197, 34, 50, 0.523);
}

.c-blue {
  color: #048ABF;
  text-shadow: 0 0 12px rgba(4, 138, 191, 0.233);
}

.c-yellow {
  color: #FFC605;
  text-shadow: 0 0 12px rgba(255, 198, 5, 0.4);
}

.c-green {
  color: #76b500;
  text-shadow: 0 0 12px rgba(148, 197, 60, 0.4);
}

.c-redClaro {
  color: #EC5B5B;
  text-shadow: 0 0 12px rgba(236, 111, 123, 0.4);
}

.c-amarilloClaro {
  color: #FFE485;
  text-shadow: 0 0 12px rgba(255, 198, 5, 0.4);
}

.c-blueClaro {
  color: #44cfd9;
  text-shadow: 0 0 12px rgba(46, 164, 223, 0.4);
}

.c-verdeClaro {
  color: #D2DF73;
  text-shadow: 0 0 12px rgba(148, 197, 60, 0.4);
}

/* ── Scroll ─────────────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 0;
  transition: all 0.7s ease;
  will-change: opacity, transform;
}

/* direcciones */
.reveal {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-zoom {
  transform: scale(0.9);
}

/* cuando aparecen */
.reveal.show,
.reveal-left.show,
.reveal-right.show,
.reveal-zoom.show {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}


/* ── BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--c-accent);
  color: var(--c-bg);
}

.container {
  max-width: 100% !important;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ── NOISE OVERLAY ────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
}

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
}

h4,
h5 {
  font-family: var(--font-mono);
  font-weight: 600;
}

.mono {
  font-family: var(--font-mono);
  font-size: .8em;
}

.mono2 {
  font-family: var(--font-mono);
  font-size: .9em;
  color: var(--c-accent5);
}

.mono3 {
  font-family: var(--font-mono);
  font-size: .9em;
  color: var(--c-accent6);
}

.mono4 {
  font-family: var(--font-mono);
  font-size: .9em;
  color: var(--c-accent7);
}

.accent {
  color: var(--c-accentN);
}

.accent1 {
  color: var(--c-accentA);
}

.accent2 {
  color: var(--c-accent2);
}

.accent3 {
  color: var(--c-accent3);
}

.accent4 {
  color: var(--c-accent);
}

.muted {
  color: var(--c-muted);
}

/* Texto */
.benefit-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--c-muted);
}

.benefit-content {
  max-width: 420px;
}

/* ── SECTION COMMONS ──────────────────────────────── */
section {
  padding: 3rem 0;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--c-accent3);
  text-transform: uppercase;
  letter-spacing: .15em;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 500px;
  margin-top: 1rem;
}

/* Typing effect for hero titles */
.typing-text {
  /* display: inline-block; */
  min-width: 6px;
  white-space: normal;
}

.typing-caret {
  display: inline-block;
  width: 3px;
  height: 0.95em;
  margin-left: 8px;
  background: #94C53C;
  border-radius: 2px;
  vertical-align: middle;
  transform: translateY(0.06em);
  animation: caret-blink 0.9s steps(1) infinite;
}

@keyframes caret-blink {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
  isolation: isolate;
}

.hero .container {
  z-index: 2;
}

.hero .row {
  min-height: calc(100vh - 14rem);
}

.hero .col-lg-6:first-child {
  position: relative;
  z-index: 3;
}

.hero-media {
  position: absolute;
  top: 54%;
  right: clamp(-6rem, -3vw, -1rem);
  width: min(48vw, 820px);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 12% 4% 8% 18%;
  background: radial-gradient(circle, rgba(4, 138, 191, .16) 0%, transparent 70%);
  filter: blur(32px);
  z-index: -1;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  --x-0: 91%;
  --c-0: hsla(97, 2%, 11%, 1);
  --y-0: 90%;
  --x-1: 17%;
  --y-1: 24%;
  --c-1: hsla(75, 0%, 0%, 1);
  --y-2: 32%;
  --c-2: hsla(209, 70%, 9%, 1);
  --x-2: 11%;
  --x-3: 2%;
  --c-3: hsla(212, 72%, 58%, 1);
  --y-3: 31%;
  --c-4: hsla(349, 0%, 0%, 1);
  --y-4: 93%;
  --x-4: 74%;
  --s-start-0: 1%;
  --s-end-0: 61%;
  --s-start-1: 0%;
  --s-end-1: 55%;
  --s-start-2: 19%;
  --s-end-2: 54%;
  --s-start-3: 0%;
  --s-end-3: 67%;
  --s-start-4: 12%;
  --s-end-4: 82%;
  background-color: hsla(0, 0%, 44%, 1);
  background-image: radial-gradient(circle at var(--x-0) var(--y-0), var(--c-0) var(--s-start-0), transparent var(--s-end-0)), radial-gradient(circle at var(--x-1) var(--y-1), var(--c-1) var(--s-start-1), transparent var(--s-end-1)), radial-gradient(circle at var(--x-2) var(--y-2), var(--c-2) var(--s-start-2), transparent var(--s-end-2)), radial-gradient(circle at var(--x-3) var(--y-3), var(--c-3) var(--s-start-3), transparent var(--s-end-3)), radial-gradient(circle at var(--x-4) var(--y-4), var(--c-4) var(--s-start-4), transparent var(--s-end-4));
  animation: hero-grid-bg 10s linear infinite alternate;
  background-blend-mode: normal, normal, normal, normal, normal;
  will-change: transform, opacity;
  contain: paint;
}

@keyframes hero-grid-bg {
  0% {
    --x-0: 91%;
    --s-start-0: 1%;
    --s-end-0: 61%;
    --c-0: hsla(97, 2%, 11%, 1);
    --y-0: 90%;
    --x-1: 17%;
    --s-start-1: 0%;
    --s-end-1: 55%;
    --y-1: 24%;
    --c-1: hsla(75, 0%, 0%, 1);
    --y-2: 32%;
    --c-2: hsla(209, 70%, 9%, 1);
    --x-2: 11%;
    --s-start-2: 19%;
    --s-end-2: 54%;
    --s-start-3: 0%;
    --s-end-3: 67%;
    --x-3: 2%;
    --c-3: hsla(212, 72%, 58%, 1);
    --y-3: 31%;
    --c-4: hsla(349, 0%, 0%, 1);
    --y-4: 93%;
    --s-start-4: 12%;
    --s-end-4: 82%;
    --x-4: 74%;
  }

  100% {
    --x-0: 49%;
    --s-start-0: 19%;
    --s-end-0: 69%;
    --c-0: hsla(313, 0%, 0%, 1);
    --y-0: 25%;
    --x-1: 1%;
    --s-start-1: 3%;
    --s-end-1: 77%;
    --y-1: 41%;
    --c-1: hsla(360, 0%, 0%, 1);
    --y-2: 93%;
    --c-2: hsla(321, 0%, 0%, 1);
    --x-2: 44%;
    --s-start-2: 6%;
    --s-end-2: 73%;
    --s-start-3: 8%;
    --s-end-3: 86%;
    --x-3: 97%;
    --c-3: hsla(212, 72%, 58%, 1);
    --y-3: 51%;
    --c-4: hsla(109, 0%, 0%, 1);
    --y-4: 69%;
    --s-start-4: 20%;
    --s-end-4: 75%;
    --x-4: 10%;
  }
}

@property --x-0 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 91%
}

@property --s-start-0 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 1%
}

@property --s-end-0 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 61%
}

@property --c-0 {
  syntax: '<color>';
  inherits: false;
  initial-value: hsla(97, 2%, 11%, 1)
}

@property --y-0 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 90%
}

@property --x-1 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 17%
}

@property --s-start-1 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%
}

@property --s-end-1 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 55%
}

@property --y-1 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 24%
}

@property --c-1 {
  syntax: '<color>';
  inherits: false;
  initial-value: hsla(75, 0%, 0%, 1)
}

@property --y-2 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 32%
}

@property --c-2 {
  syntax: '<color>';
  inherits: false;
  initial-value: hsla(209, 70%, 9%, 1)
}

@property --x-2 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 11%
}

@property --s-start-2 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 19%
}

@property --s-end-2 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 54%
}

@property --s-start-3 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%
}

@property --s-end-3 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 67%
}

@property --x-3 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 2%
}

@property --c-3 {
  syntax: '<color>';
  inherits: false;
  initial-value: hsla(212, 72%, 58%, 1)
}

@property --y-3 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 31%
}

@property --c-4 {
  syntax: '<color>';
  inherits: false;
  initial-value: hsla(349, 0%, 0%, 1)
}

@property --y-4 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 93%
}

@property --s-start-4 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 12%
}

@property --s-end-4 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 82%
}

@property --x-4 {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 74%
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.glow-1 {
  background: radial-gradient(circle, rgba(0, 229, 255, .18) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

.glow-2 {
  background: radial-gradient(circle, rgba(123, 97, 255, .15) 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0, 229, 255, .08);
  border: 1px solid rgba(0, 229, 255, .2);
  border-radius: 100px;
  padding: .3rem 1rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--c-accent);
  margin-bottom: 2rem;
  animation: fadeUp .6s ease both;
}

.hero-tag2 {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #0F2D5E;
  border: 1px solid #0F2D5E;
  border-radius: 100px;
  padding: .3rem 1rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--c-accent);
  margin-bottom: 2rem;
  animation: fadeUp .6s ease both;
}

.hero-tag3 {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #1e3a10;
  border: 1px solid #1e3a10;
  border-radius: 100px;
  padding: .3rem 1rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--c-accent);
  margin-bottom: 2rem;
  animation: fadeUp .6s ease both;
}

.hero-tag4 {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #3a2800;
  border: 1px solid #3a2800;
  border-radius: 100px;
  padding: .3rem 1rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--c-accent);
  margin-bottom: 2rem;
  animation: fadeUp .6s ease both;
  margin-top: 6rem;
}

.hero-tag5 {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #1e3a10;
  border: 1px solid #1e3a10;
  border-radius: 100px;
  padding: .3rem 1rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--c-accent5);
  margin-bottom: 2rem;
  animation: fadeUp .6s ease both;
}

.tag-dot {
  width: 7px;
  height: 7px;
  background: var(--c-accent4);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.tag-dot2 {
  width: 7px;
  height: 7px;
  background: var(--c-accent5);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.tag-dot3 {
  width: 7px;
  height: 7px;
  background: var(--c-accent6);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.tag-dot4 {
  width: 7px;
  height: 7px;
  background: var(--c-accentN);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.7);
  }
}

.color {
  color: var(--c-green-lime);
}

.headhunting-top .row {
  flex-direction: row-reverse;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 3.2rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}


@media (max-width: 991px) {
  .hero-title {
    padding-right: 1rem;
    font-size: 37px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    padding-right: 0.6rem;
  }
}

/* ── ADVANTAGES (Staffing) ───────────────────────────────────── */
.advantages-staffing .headhunting-top .row {
  flex-direction: row;
}
.advantages-staffing .headhunting-content {
  text-align: left;
}
.advantages-staffing .hero-title {
  text-align: left;
}
.advantages-staffing .advantages-desc {
  opacity: 1;
  transform: translateX(0);
  animation: fadeUp .7s .2s ease both;
  text-align: justify;
  max-width: none;
  width: 100%;
}
.advantages-staffing .staffing-advantages-desc {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.22, .61, .36, 1);
  animation: none;
}
.advantages-staffing .staffing-advantages-desc.staffing-desc-enter {
  opacity: 1;
  transform: translateX(0);
}
.outsourcing-highlight {
  display: inline-block;
  transition: color 0.35s ease;
  text-shadow: none;
}
.outsourcing-highlight.color {
  animation: outsourcing-pop 0.75s ease both;
}

@keyframes outsourcing-pop {
  0% {
    text-shadow: none;
    transform: scale(1);
  }
  55% {
    
    transform: scale(1.04);
  }
  100% {
    
    transform: scale(1);
  }
}
.advantages-section {
  padding: 0 0 3rem;
}

.advantages-section .container{
    max-width: 100% !important;
    padding-left: 0%;
    padding-right: 0%;
}
.advantages-inner {
  display: block;
}
.advantages-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.advantages-right .advantage-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 150px;
  padding: 1.2rem;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center center;
  transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  filter: brightness(0.95) saturate(1.02);
  transform: translateZ(0);
  backface-visibility: hidden;
}
.advantages-right .advantage-card.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.99);
  will-change: transform, opacity;
  transition:
    opacity 0.55s ease,
    transform 0.6s cubic-bezier(.22, .61, .36, 1);
}
.advantages-right .advantage-card.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.advantages-right .advantage-card.reveal:nth-child(1) {
  transition-delay: 0.05s;
}
.advantages-right .advantage-card.reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.advantages-right .advantage-card.reveal:nth-child(3) {
  transition-delay: 0.19s;
}
.advantages-right .advantage-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 16, 0.55) 0%,
    rgba(6, 10, 16, 0.72) 55%,
    rgba(6, 10, 16, 0.86) 100%
  );
  transition: opacity 0.35s ease;
}
.advantages-right .advantage-card .card-content {
  position: relative;
  z-index: 2;
  color: var(--c-text);
  opacity: 1;
  transform: translateY(0);
}
.advantages-right .advantage-card .card-title,
.advantages-right .advantage-card .card-desc {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.card-hint {
  display: inline-block;
  margin-top: .45rem;
  font-size: .78rem;
  color: rgba(230, 237, 247, 0.75);
  letter-spacing: .02em;
  text-transform: none;
}
.advantages-right .advantage-card .card-title {
  margin-top: .3rem;
  margin-bottom: .4rem;
  font-weight: 800;
}
.advantages-right .advantage-card .card-desc {
  color: var(--c-azul);
  font-weight: 600;
  line-height: 1.4;
}
.advantages-right .advantage-card.reveal:hover,
.advantages-right .advantage-card.reveal.visible:hover,
.advantages-right .advantage-card:hover {
  transform: translateY(-6px) scale(1.02);
  filter: brightness(1.02) saturate(1.08);
  box-shadow: 0 24px 55px rgba(0,0,0,0.6);
}
.advantages-right .advantage-card:hover::before {
  opacity: 0.65;
}
.advantages-right .advantage-card:hover .card-content {
  opacity: 1;
  transform: translateY(0);
}
.advantages-right .advantage-card:hover .card-title,
.advantages-right .advantage-card:hover .card-desc {
  opacity: 1;
  transform: translateY(0);
}
.advantages-right .advantage-card:hover .card-hint {
  opacity: 0;
}

@media (hover: none) {
  .advantages-right .advantage-card .card-content {
    opacity: 1;
    transform: translateY(0);
  }
  .advantages-right .advantage-card .card-title,
  .advantages-right .advantage-card .card-desc {
    opacity: 1;
    transform: translateY(0);
  }
  .card-hint {
    display: none;
  }
}
.advantage-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 197, 60, 0.55);
  background: rgba(12, 22, 14, 0.6);
  color: #cfeaa0;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .02em;
}
.advantage-pill .pill-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(148, 197, 60, 0.18);
  color: #bfe37b;
  font-weight: 800;
  font-size: .8rem;
}
.advantages-right .advantage-card:nth-child(3) {
  grid-column: 1 / -1;
}
@media (max-width: 991px) {
  .advantages-right { grid-template-columns: 1fr; }
  .advantages-right .advantage-card { min-height: 140px; }
}

/* ── STAFFING PROFILES TABLE ───────────────────────────────── */
.staffing-profiles-section {
  position: relative;
  padding: 4.5rem 0 6rem;
  background:
    radial-gradient(circle at 16% 18%, rgba(149, 191, 59, 0.12), transparent 28%),
    linear-gradient(90deg, #1d1f23 0%, #07182d 42%, #020b17 100%);
  overflow: hidden;
}
.staffing-profiles-section::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(149, 191, 59, 0.45), transparent);
}
.staffing-profiles-box {
  position: relative;
  z-index: 1;
  padding-left: 7%;
  padding-right: 7%;
}
.staffing-profiles-header {
  max-width: 100%;
  margin-bottom: 1.6rem;
}
.staffing-profiles-header.reveal {
  transform: none;
  filter: none;
}
.staffing-profiles-header.reveal .staffing-profiles-title {
  opacity: 0;
  transform: translateY(-58px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.staffing-profiles-header.reveal .staffing-profiles-desc {
  opacity: 0;
  transform: translateY(58px);
  transition: opacity 0.85s 0.14s ease, transform 0.85s 0.14s cubic-bezier(0.16, 1, 0.3, 1);
}
.staffing-profiles-header.reveal.show .staffing-profiles-title,
.staffing-profiles-header.reveal.visible .staffing-profiles-title,
.staffing-profiles-header.reveal.show .staffing-profiles-desc,
.staffing-profiles-header.reveal.visible .staffing-profiles-desc {
  opacity: 1;
  transform: translateY(0);
}
.staffing-profiles-title {
  max-width: 100%;
  color: var(--c-white);
  font-size: clamp(2.1rem, 4.2vw, 4.15rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.staffing-profiles-title span {
  color: var(--c-green-lime);
  font-style: italic;
}
.staffing-profiles-desc {
  max-width: 1100px;
  color: var(--c-muted);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 700;
  line-height: 1.75;
  text-wrap: pretty;
}
.staffing-profiles-table-wrap {
  width: 100%;
  overflow-x: auto;
  scrollbar-color: #1e3a10 rgba(255, 255, 255, 0.08);
}
.staffing-profiles-table-wrap.reveal {
  transform: translateY(90px) scale(0.94);
  transform-origin: center top;
}
.staffing-profiles-table-wrap.reveal.show,
.staffing-profiles-table-wrap.reveal.visible {
  transform: translateY(0) scale(1);
}
.staffing-profiles-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
  background: #DDF4C2;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(30, 58, 16, 0.18);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.staffing-profiles-table-wrap:hover .staffing-profiles-table {
  transform: translateY(-4px);
  box-shadow:
    0 36px 72px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(149, 191, 59, 0.18);
}
.staffing-profiles-table th {
  position: relative;
  overflow: hidden;
  background: #1e3a10;
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.55;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
  vertical-align: middle;
}
.staffing-profiles-table th::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.18) 42%, transparent 72%);
  transform: translateX(-120%);
}
.staffing-profiles-table-wrap.visible .staffing-profiles-table th::after,
.staffing-profiles-table-wrap.show .staffing-profiles-table th::after {
  animation: tableHeaderSweep 1.05s 0.35s ease both;
}
.staffing-profiles-table th,
.staffing-profiles-table td {
  border-right: 1px solid rgba(30, 58, 16, 0.3);
}
.staffing-profiles-table th:last-child,
.staffing-profiles-table td:last-child {
  border-right: 0;
}
.staffing-profiles-table td {
  padding: 1.25rem 1.15rem 2.4rem;
  vertical-align: top;
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s ease;
}
.staffing-profiles-table-wrap.visible .staffing-profiles-table td,
.staffing-profiles-table-wrap.show .staffing-profiles-table td {
  opacity: 1;
  transform: translateY(0);
}
.staffing-profiles-table-wrap.visible .staffing-profiles-table td:nth-child(1),
.staffing-profiles-table-wrap.show .staffing-profiles-table td:nth-child(1) {
  transition-delay: 0.06s;
}
.staffing-profiles-table-wrap.visible .staffing-profiles-table td:nth-child(2),
.staffing-profiles-table-wrap.show .staffing-profiles-table td:nth-child(2) {
  transition-delay: 0.16s;
}
.staffing-profiles-table-wrap.visible .staffing-profiles-table td:nth-child(3),
.staffing-profiles-table-wrap.show .staffing-profiles-table td:nth-child(3) {
  transition-delay: 0.26s;
}
.staffing-profiles-table td:hover {
  background: #cce9ae;
}
.staffing-profiles-table ul {
  display: grid;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.staffing-profiles-table li {
  color: #07182d;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 800;
  line-height: 2.0;
}
.staffing-profiles-table li::before {
  
  color: #1e3a10;
  margin-right: 0.35rem;
}

@media (max-width: 991px) {
  .staffing-profiles-box {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .staffing-profiles-section::before {
    left: 2.5rem;
    right: 2.5rem;
  }
  .staffing-profiles-table {
    display: block;
    min-width: 0;
    border-collapse: separate;
    background: transparent;
    box-shadow: none;
  }
  .staffing-profiles-table thead {
    display: none;
  }
  .staffing-profiles-table tbody,
  .staffing-profiles-table tr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 1rem;
  }
  .staffing-profiles-table td {
    display: block;
    min-width: 0;
    padding: 0;
    border: 0;
    background: #DDF4C2;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  }
  .staffing-profiles-table-wrap:hover .staffing-profiles-table {
    transform: none;
  }
  .staffing-profiles-table td::before {
    display: block;
    padding: 0.9rem 1rem;
    background: #1e3a10;
    color: var(--c-white);
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
  }
  .staffing-profiles-table td:nth-child(1)::before {
    content: "Dirección y C-Suite";
  }
  .staffing-profiles-table td:nth-child(2)::before {
    content: "Gerencias y mandos medios";
  }
  .staffing-profiles-table td:nth-child(3)::before {
    content: "Perfiles técnicos TI";
  }
  .staffing-profiles-table ul {
    padding: 1rem 1rem 1.25rem;
  }
}

@media (max-width: 576px) {
  .staffing-profiles-box {
    padding-left: clamp(1rem, 5vw, 1.5rem);
    padding-right: clamp(1rem, 5vw, 1.5rem);
  }
  .staffing-profiles-section::before {
    left: clamp(1rem, 5vw, 1.5rem);
    right: clamp(1rem, 5vw, 1.5rem);
  }
  .staffing-profiles-title {
    font-size: clamp(1.85rem, 7vw, 2.55rem);
    line-height: 1.12;
  }
  .staffing-profiles-desc {
    font-size: 1rem;
    line-height: 1.65;
  }
  .staffing-profiles-table tbody,
  .staffing-profiles-table tr {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .staffing-profiles-table li {
    font-size: 0.95rem;
  }
}


.hero-sub {
  font-size: 1.15rem;
  color: var(--c-muted);
  max-width: 520px;
  margin: 1.8rem 0 2.8rem;
  animation: fadeUp .7s .2s ease both;
}

.hero-actions {
  animation: fadeUp .7s .3s ease both;
}

.btn-primary-custom {
  background: var(--c-accent);
  color: var(--c-white);
  font-family: var(--font-head);
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 1px solid var(--c-accent);
  font-size: 1rem;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 122, 255, .18);
}

.btn-secondary-custom {
  background: transparent;
  color: var(--c-text);
  font-family: var(--font-head);
  font-weight: 600;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  font-size: 1rem;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.btn-secondary-custom:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
}

/* Hero visual card */
.hero-visual {
  position: relative;
  animation: fadeLeft .8s .2s ease both;
}

.hero-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent2), var(--c-accent3));
}

.code-block {
  background: rgba(0, 0, 0, .4);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  font-family: var(--font-mono);
  font-size: .8rem;
  line-height: 1.9;
}

.code-line {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.code-kw {
  color: var(--c-accent2);
}

.code-fn {
  color: var(--c-accent);
}

.code-str {
  color: #86efac;
}

.code-num {
  color: var(--c-accent3);
}

.code-cmt {
  color: var(--c-muted);
  font-style: italic;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: var(--c-accent);
  animation: blink 1.1s infinite;
  vertical-align: middle;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-item {
  background: rgba(0, 229, 255, .05);
  border: 1px solid rgba(0, 229, 255, .1);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-accent);
  display: block;
}

.stat-lbl {
  font-size: .75rem;
  color: var(--c-muted);
}

/* ── SERVICES ─────────────────────────────────────── */
.services-section-light {
  background: linear-gradient(135deg, #071828, #0d2d52);

}

.services-section-light .section-title {
  color: #ffffff;
}

.services-section-light .accent {
  color: #94c53c;
}

.services-section-light .row>.accent {
  color: #94c53c;
}

.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  height: 100%;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: var(--trans);
  background: radial-gradient(circle at 50% 0%, #0f2d5e70, transparent 70%);
}

.service-card:hover {
  border-color: rgba(55, 86, 141, 0.646);
  transform: translateY(-4px);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.service-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  min-height: 22px;
}

.service-card-head .service-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-card-head h4 {
  margin-bottom: 0;
  line-height: 0;
}

.icon-cyan {
  background: rgba(0, 229, 255, .1);
  color: var(--c-accent);
}

.icon-purple {
  background: rgba(123, 97, 255, .1);
  color: var(--c-accent2);
}

.icon-pink {
  background: rgba(255, 77, 109, .1);
  color: var(--c-accent3);
}

.icon-green {
  background: rgba(134, 239, 172, .1);
  color: #86efac;
}

.icon-orange {
  background: rgba(251, 146, 60, .1);
  color: #fb923c;
}

.icon-blue {
  background: rgba(96, 165, 250, .1);
  color: #60a5fa;
}

.icon-white {
  background: rgba(253, 254, 255, 0.1);
  color: #ffffff;
}

.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}

.service-card p {
  font-size: .9rem;
  color: var(--c-muted);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--c-accent);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 1.2rem;
  transition: var(--trans);
}

.service-link:hover {
  gap: .7rem;
}


.headhunting-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 0px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 50%, rgba(4, 138, 191, 0.22), transparent 30%),
    radial-gradient(circle at 80% 35%, rgba(4, 138, 191, 0.10), transparent 28%),
    linear-gradient(90deg, #1d1f23 0%, #07182d 42%, #020b17 100%);
}

.headhunting-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.01) 0%,
      rgba(4, 138, 191, 0.05) 25%,
      rgba(4, 138, 191, 0.02) 50%,
      rgba(4, 138, 191, 0.05) 75%,
      rgba(255, 255, 255, 0.01) 100%);
  pointer-events: none;
}

.headhunting-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 2rem clamp(1.2rem, 4vw, 4rem) 3rem;
}

.headhunting-card {
  width: 100%;
  max-width: 100%;
}

.headhunting-top {
  margin-bottom: 4rem;
}

.headhunting-content {
  animation: fadeUp 0.9s ease both;
}

.headhunting-title {
  font-family: var(--font-head);
  font-size: clamp(3.3rem, 7vw, 6.2rem);
  font-weight: 800;
  line-height: .95;
  color: var(--c-red-primary);
  margin-bottom: 1.5rem;
  text-shadow: 0 8px 28px rgba(242, 29, 68, 0.18);
  animation: fadeUp 0.8s ease both;
}

.headhunting-desc {
  font-family: var(--font-body);
  color: var(--c-muted);
  font-size: clamp(1.1rem, 1.65vw, 1.55rem);
  font-weight: 700;
  line-height: 1.85;
  max-width: 760px;
  text-align: justify;
  animation: none;
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.22, .61, .36, 1);
}

.headhunting-desc.typing-desc-pending {
  opacity: 0;
  transform: translateX(56px);
}

.headhunting-desc.typing-desc-enter {
  opacity: 1;
  transform: translateX(0);
}

.headhunting-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: none;
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22, .61, .36, 1);
}

.headhunting-visual.typing-visual-pending {
  opacity: 0;
  transform: translateX(-56px);
}

.headhunting-visual.typing-visual-enter {
  opacity: 1;
  transform: translateX(0);
}

.headhunting-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35));
  animation: floating 4.5s ease-in-out infinite;
  transition: transform .4s ease, filter .4s ease;
}

.headhunting-visual:hover .headhunting-img {
  transform: scale(1.04);
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, .45));
}

.headhunting-bottom {
  margin-top: 3.2rem;
  position: relative;
  isolation: isolate;
}

.headhunting-bottom::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -32px;
  width: min(86%, 980px);
  height: 220px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(4, 138, 191, 0.2) 0%, rgba(4, 138, 191, 0) 74%);
  filter: blur(26px);
  pointer-events: none;
  z-index: -1;
}

.headhunting-bottom .row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  align-items: stretch;
}

.headhunting-col {
  grid-column: span 3;
  min-width: 0;
}

.headhunting-col.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.96);
  transition: opacity 0.7s ease, transform 0.85s cubic-bezier(.22, .61, .36, 1);
}

.headhunting-col.reveal:nth-child(odd) {
  transform: translateX(-26px) translateY(34px) scale(0.96);
}

.headhunting-col.reveal:nth-child(2n) {
  transform: translateX(26px) translateY(34px) scale(0.96);
}

.headhunting-col.reveal.visible {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

.headhunting-col:nth-child(1).reveal {
  transition-delay: 0.02s;
}

.headhunting-col:nth-child(2).reveal {
  transition-delay: 0.1s;
}

.headhunting-col:nth-child(3).reveal {
  transition-delay: 0.18s;
}

.headhunting-col:nth-child(4).reveal {
  transition-delay: 0.26s;
}

.headhunting-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(90, 166, 220, 0.48);
  box-shadow: 0 26px 40px rgba(1, 16, 38, 0.44), 0 0 0 1px rgba(120, 180, 230, 0.18) inset;
}

.headhunting-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin-bottom: 1.15rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(7, 31, 59, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  line-height: 1;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1), box-shadow .45s ease;
}

.headhunting-card:hover .headhunting-icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.headhunting-card h4 {
  font-family: var(--font-mono);
  color: var(--c-white);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 700;
  margin-bottom: .95rem;
  line-height: 1.18;
}

.headhunting-card p {
  font-family: var(--font-body);
  color: rgba(233, 244, 255, 0.9);
  line-height: 1.75;
  font-size: 1rem;
  font-weight: 500;
  max-width: none;
  text-wrap: pretty;
  text-align: left;
}

.headhunting-card {
  width: 100%;
  height: 100%;
  padding: clamp(1.2rem, 2vw, 1.55rem);
  border-radius: 24px;
  border: 1px solid rgba(113, 172, 226, 0.28);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 36%),
    linear-gradient(152deg, rgba(12, 28, 53, 0.9) 0%, rgba(4, 16, 35, 0.88) 52%, rgba(4, 22, 46, 0.93) 100%);
  box-shadow: 0 14px 30px rgba(2, 10, 28, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1), box-shadow .45s ease, border-color .45s ease;
}

.headhunting-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(120, 190, 240, 0.95), rgba(255, 255, 255, 0.06));
  opacity: 0.85;
}

.headhunting-card::after {
  content: "";
  position: absolute;
  inset: -25% -10% auto;
  height: 62%;
  background: radial-gradient(circle, rgba(88, 188, 255, 0.19), rgba(88, 188, 255, 0));
  transform: translateY(-35%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.headhunting-card:hover::after {
  opacity: 1;
}

@media (max-width: 1399px) {
  .headhunting-col {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .headhunting-col {
    grid-column: span 12;
  }
}

@media (max-width: 991px) {
  .headhunting-bottom .row {
    gap: 1.25rem;
  }

  .headhunting-card {
    border-radius: 20px;
    padding: 1.15rem 1.05rem;
  }

  .headhunting-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .headhunting-card h4 {
    font-size: 1.45rem;
  }

  .headhunting-card p {
    font-size: .96rem;
    line-height: 1.65;
  }
}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 1400px) {
  .headhunting-box {
    padding: 3rem 7rem 4rem;
  }

  .headhunting-img {
    max-width: 620px;
  }

  .headhunting-desc {
    max-width: 820px;
    font-size: 1.6rem;
  }

  .headhunting-card h4 {
    font-size: 2.4rem;
  }

  .headhunting-card p {
    font-size: 1.12rem;
  }
}

@media (max-width: 991px) {
  .headhunting-section {
    padding: 105px 0 55px;
  }

  .headhunting-box {
    padding: 2rem 2.5rem 2.5rem;
  }

  .headhunting-top {
    margin-bottom: 2.8rem;
  }

  .headhunting-title {
    font-size: clamp(2.8rem, 8vw, 4.2rem);
  }

  .headhunting-desc {
    max-width: 100%;
    font-size: 1.08rem;
    line-height: 1.8;
    text-align: left;
  }

  .headhunting-visual {
    margin-top: 1rem;
  }

  .headhunting-img {
    max-width: 360px;
  }

  .headhunting-card {
    padding: 1.15rem 1.05rem;
  }

  .headhunting-card h4 {
    font-size: 1.45rem;
  }

  .headhunting-card p {
    font-size: .96rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .headhunting-section {
    padding: 95px 0 45px;
  }

  .headhunting-box {
    padding: 1.4rem 1.5rem 2rem;
  }

  .headhunting-top {
    margin-bottom: 2.2rem;
  }

  .headhunting-title {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 1rem;
  }

  .headhunting-desc {
    font-size: 1rem;
    line-height: 1.75;
    text-align: left;
  }

  .headhunting-img {
    max-width: 240px;
    width: 80%;
    margin: 1rem auto 0;
  }

  .headhunting-icon {
    width: 56px;
    height: 56px;
    font-size: 1.55rem;
  }

  .headhunting-card h4 {
    font-size: 1.45rem;
  }

  .headhunting-card p {
    font-size: .98rem;
    line-height: 1.7;
    text-align: left;
  }
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .headhunting-card {
    text-align: center;
  }

  .headhunting-icon {
    margin: 0 auto 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .headhunting-card h4 {
    margin-top: 10px;
  }

  .headhunting-card p {
    text-align: center;
  }
}