/* ====================================================================
     Recruitment page, page-specific styles only.
     Shared typography (hero-title, section-title, section-sub, pill, etc.)
     and brand tokens are pulled from assets/css/style.css.
     Cross-page components (.cs-pain-card, .cs-hl2-grid, .cs-adv-card,
     .cs-wf2-grid, .cs-compare-table, .cs-sec-section, .testi-card,
     .ind-cta-panel) match compnay-structure.html / payroll.html so type,
     spacing and rhythm stay consistent across pages.
     ==================================================================== */

/* Section paddings */
.py-section {
  padding: 80px 0;
}

.cs-bg-warm {
  background: var(--paper-warm, #fdeee7);
}

/* ===== Pain cards (matches compnay-structure) ===== */
.cs-pain-card {
  background: #fff;
  border: 1px solid #f0e3da;
  border-radius: 18px;
  padding: 22px 22px 24px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}

.cs-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(235, 80, 23, 0.1);
  border-color: rgba(235, 80, 23, 0.28);
}

.cs-pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ffe9dd;
  color: #eb5017;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.cs-pain-card h6 {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-size: clamp(0.98rem, 1.4vw, 1.05rem);
  line-height: 1.35;
}

.cs-pain-card p {
  color: #6b7280;
  margin: 0;
  font-size: clamp(0.88rem, 1.1vw, 0.94rem);
  line-height: 1.55;
}

.cs-pain-strike {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #c1240a;
  text-transform: uppercase;
  background: #fef0eb;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ===== Solutions cards (advantage style) ===== */
.cs-adv-card {
  background: #fff;
  border: 1px solid #f0e3da;
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  transition: all .25s ease;
  overflow: hidden;
  height: 100%;
}

.cs-adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #eb5017 50%, transparent 100%);
  opacity: 0;
  transition: opacity .25s;
}

.cs-adv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(235, 80, 23, 0.3);
  box-shadow: 0 18px 40px rgba(235, 80, 23, 0.08);
}

.cs-adv-card:hover::before {
  opacity: 1;
}

.cs-adv-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #eb5017;
  background: #fff1ea;
}

.cs-adv-card.is-lime .cs-adv-ico {
  background: #f1fcc8;
  color: #3a4112;
}

.cs-adv-card.is-gold .cs-adv-ico {
  background: #fff3cd;
  color: #7a5a00;
}

.cs-adv-card h6 {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.cs-adv-card p {
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

.cs-adv-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: rgba(235, 80, 23, 0.12);
  letter-spacing: -0.02em;
}

/* ===== Features (12 tile grid + show more) ===== */
.cs-hl2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 991.98px) {
  .cs-hl2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .cs-hl2-grid {
    grid-template-columns: 1fr;
  }
}

.cs-hl2-card {
  background: #fff;
  border: 1px solid #f0e3da;
  border-radius: 18px;
  padding: 24px 22px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-hl2-card:hover {
  transform: translateY(-3px);
  border-color: rgba(235, 80, 23, 0.3);
  box-shadow: 0 14px 32px rgba(235, 80, 23, 0.07);
}

.cs-hl2-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs-hl2-ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  background: #fff1ea;
  color: #eb5017;
}

.cs-hl2-card.tone-l .cs-hl2-ico {
  background: #f1fcc8;
  color: #3a4112;
}

.cs-hl2-card.tone-g .cs-hl2-ico {
  background: #fff3cd;
  color: #7a5a00;
}

.cs-hl2-card h6 {
  margin: 0;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1rem);
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.cs-hl2-card p {
  margin: 0;
  font-size: clamp(0.84rem, 1.1vw, 0.9rem);
  line-height: 1.55;
  color: #6b7280;
}

.cs-hl2-card.is-hidden {
  display: none;
}

.cs-hl-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.cs-hl-more {
  background: #fff;
  border: 1.5px dashed #eb5017;
  color: #eb5017;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cs-hl-more:hover {
  background: #eb5017;
  color: #fff;
}

.cs-hl-more .bi {
  transition: transform .25s ease;
}

.cs-hl-more.is-open .bi {
  transform: rotate(180deg);
}

/* ===== Requisition / CV pool workflow grid ===== */
.cs-wf2-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: center;
}

/* ===== Candidate CV Pool - Left Card ===== */

/* =========================================
   Recruitment Workflow - Left Feature Card
   ========================================= */

/* Outer box around Card 1 */
#workflow .cs-wf2-list {
    list-style: none;
    margin: 0;

    padding: 24px;

    background: #fff;
    border: 1px solid #f0e3da;
    border-radius: 22px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    height: 100%;
    box-sizing: border-box;

    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
}


/* Separate box around every description */
#workflow .cs-wf2-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 14px 16px;

    background: #fbf7f4;
    border: 1px solid #f0e3da;
    border-radius: 14px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* Same animation/style for every description */
#workflow .cs-wf2-list li:hover {
    background: #fff1ea;
    border-color: rgba(235, 80, 23, 0.4);

    transform: translateX(4px);

    box-shadow: 0 8px 20px rgba(235, 80, 23, 0.07);
}


/* Keep icons aligned */
#workflow .cs-wf2-list .wfi {
    flex-shrink: 0;
}


/* Keep text spacing consistent */
#workflow .cs-wf2-list h6 {
    margin: 0 0 4px;
}

#workflow .cs-wf2-list p {
    margin: 0;
}

/* Outer box around Card 1 */
#cv-pool .cs-wf2-list {
  background: #fff;
  border: 1px solid #f0e3da;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
  height: 100%;
  gap: 12px;
  box-sizing: border-box;
}

/* Separate box around every feature */
#cv-pool .cs-wf2-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  padding: 14px 16px;

  background: #fbf7f4;
  border: 1px solid #f0e3da;
  border-radius: 14px;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

/* Same hover feel as your workflow cards */
#cv-pool .cs-wf2-list li:hover {
  background: #fff1ea;
  border-color: rgba(235, 80, 23, 0.4);
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .cs-wf2-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.cs-wf2-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cs-wf2-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cs-wf2-list .wfi {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff1ea;
  color: #eb5017;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.cs-wf2-list h6 {
  margin: 0 0 4px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1rem);
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.cs-wf2-list p {
  margin: 0;
  font-size: clamp(0.84rem, 1.1vw, 0.9rem);
  line-height: 1.55;
  color: #6b7280;
}

.cs-wf2-infographic {
  background: #fff;
  border: 1px solid #f0e3da;
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
}

.cs-wf2-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-wf2-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fbf7f4;
  border: 1px solid #f0e3da;
  border-radius: 14px;
  transition: all .25s;
}

.cs-wf2-step:hover {
  background: #fff1ea;
  border-color: rgba(235, 80, 23, 0.4);
  transform: translateX(4px);
}

.cs-wf2-step .stp-n {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #eb5017;
  color: #eb5017;
  font-weight: 800;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
}

.cs-wf2-step.s-init .stp-n {
  background: #eb5017;
  color: #fff;
}

.cs-wf2-step.s-end .stp-n {
  background: #cddb37;
  border-color: #cddb37;
  color: #1a1a1a;
}

.cs-wf2-step .stp-body {
  flex: 1;
  min-width: 0;
}

.cs-wf2-step .stp-role {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b9836b;
  margin-bottom: 2px;
}

.cs-wf2-step .stp-act {
  font-weight: 700;
  font-size: clamp(0.85rem, 1.1vw, 0.92rem);
  color: #1a1a1a;
}

.cs-wf2-step .stp-tag {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  color: #6b7280;
  border: 1px solid #efe7e1;
  flex-shrink: 0;
}

.cs-wf2-step.s-init .stp-tag {
  background: #eb5017;
  color: #fff;
  border-color: #eb5017;
}

.cs-wf2-step.s-end .stp-tag {
  background: #cddb37;
  color: #1a1a1a;
  border-color: #cddb37;
}

.cs-wf2-arrow {
  align-self: center;
  color: #eb5017;
  font-size: 1.1rem;
  opacity: 0.6;
  margin: -4px 0;
}

.cs-wf2-modules {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed #e9d8cb;
}

.cs-wf2-modules-l {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b9836b;
  margin-bottom: 10px;
}

.cs-wf2-mods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cs-wf2-mod {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #faf6f3;
  border: 1px solid #efe7e1;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a1a;
}

.cs-wf2-mod i {
  color: #eb5017;
}

/* ===== Hiring source flagship cards ===== */
.py-flagship {
  background: #fff;
  border: 1px solid #f1e2d8;
  border-radius: 22px;
  padding: 32px 30px;
  height: 100%;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.py-flagship:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(235, 80, 23, 0.12);
}

.py-flagship.is-dark {
  background: #1a1a1a;
  color: #fff;
  border-color: #2a2a2a;
}

.py-flag-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdeee7;
  color: #eb5017;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.py-flag-eyebrow.is-dark {
  background: rgba(235, 80, 23, 0.18);
  color: #ffb89a;
}

.py-flag-title {
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.py-flag-title.is-dark {
  color: #fff;
}

.py-flag-title.is-dark span {
  display: block;
  margin-top: 2px;
}

.py-flag-lead {
  color: #6b7280;
  font-size: clamp(0.9rem, 1.2vw, 0.96rem);
  line-height: 1.55;
  margin-bottom: 18px;
}

.py-flag-lead.is-dark {
  color: #bababa;
}

.py-flag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.py-flag-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(0.86rem, 1.1vw, 0.92rem);
  line-height: 1.5;
  color: #404040;
}

.py-flag-list.is-dark li {
  color: #d8d8d8;
}

.py-flag-list .bi {
  color: #eb5017;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 1rem;
}

.py-flag-list strong {
  color: #1a1a1a;
  font-weight: 500;
}

.py-flag-list.is-dark strong {
  color: #fff;
}

/* ===== Portal module cards ===== */
.py-module {
  background: #fff;
  border: 1px solid #f0e6df;
  border-radius: 18px;
  padding: 24px 22px;
  height: 100%;
  transition: all .25s ease;
}

.py-module:hover {
  border-color: #eb5017;
  box-shadow: 0 14px 28px rgba(235, 80, 23, 0.08);
  transform: translateY(-3px);
}

.py-module .mod-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fdeee7;
  color: #eb5017;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.py-module h6 {
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1.02rem);
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.py-module p {
  color: #6b7280;
  font-size: clamp(0.84rem, 1.1vw, 0.9rem);
  line-height: 1.55;
  margin: 0;
}

/* ===== Use case cards ===== */
.py-uc {
  background: #fff;
  border: 1px solid #f0e6df;
  border-radius: 18px;
  padding: 24px 22px;
  height: 100%;
  transition: all .25s;
}

.py-uc:hover {
  background: #fdeee7;
  border-color: #eb5017;
  transform: translateY(-3px);
}

.py-uc .uc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fdeee7;
  color: #eb5017;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.py-uc:hover .uc-icon {
  background: #fff;
}

.py-uc h6 {
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1.02rem);
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.py-uc p {
  color: #6b7280;
  font-size: clamp(0.84rem, 1.1vw, 0.9rem);
  line-height: 1.55;
  margin: 0;
}

/* ===== Comparison table ===== */
.cs-compare-wrap {
  border: 1px solid #eee;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.04);
}

.cs-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
}

.recruitment-compare-table {
    width: 100%;
    table-layout: fixed;
}

/* What changes */
.recruitment-compare-table th:nth-child(1),
.recruitment-compare-table td:nth-child(1) {
    width: 30%;
}

/* Email & Spreadsheets */
.recruitment-compare-table th:nth-child(2),
.recruitment-compare-table td:nth-child(2) {
    width: 35%;
}

/* Trackk Recruitment Software */
.recruitment-compare-table th:nth-child(3),
.recruitment-compare-table td:nth-child(3) {
    width: 45%;
}

.cs-compare-table th,
.cs-compare-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #f1f1f1;
}

.cs-compare-table thead th {
  background: #fafafa;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cs-compare-table thead th.cs-col-trackk {
  background: #eb5017;
  color: #fff;
  position: relative;
}

.cs-compare-table thead th.cs-col-trackk::before {
  content: "RECOMMENDED";
  position: absolute;
  top: 16px;
  right: 70px;
  font-size: 0.6rem;
  background: #f1fcc8;
  color: #1a1a1a;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.cs-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.cs-compare-table td.cs-feature {
  font-weight: 500;
  color: #1a1a1a;
  width: 36%;
}

.cs-compare-table td.cs-trackk {
  background: rgba(235, 80, 23, 0.04);
  color: #1a1a1a;
  font-weight: 600;
}

.cs-cell-tick {
  color: #2a8f3f;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cs-cell-cross {
  color: #b3261e;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 767.98px) {

  .cs-compare-table th,
  .cs-compare-table td {
    padding: 12px 10px;
    font-size: 0.82rem;
  }

  .cs-compare-table thead th.cs-col-trackk::before {
    display: none;
  }
}

/* ===== Security section (mirrors compnay-structure) ===== */
.cs-sec-section {
  padding: 80px 0;
  background: #fff;
}

.cs-sec-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 991.98px) {
  .cs-sec-grid {
    grid-template-columns: 1fr;
  }
}

.cs-sec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 575.98px) {
  .cs-sec-list {
    grid-template-columns: 1fr;
  }
}

.cs-sec-feature {
  background: #fff;
  border: 1px solid #f0e3da;
  border-radius: 22px;
  padding: 24px 22px;
  transition: all .25s ease;
}

.cs-sec-feature:hover {
  border-color: rgba(235, 80, 23, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(235, 80, 23, 0.07);
}

.cs-sec-feature .cs-sec-ico {
  font-size: 1.3rem;
  color: #eb5017;
  background: #fff1ea;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 12px;
}

.cs-sec-feature h6 {
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1rem);
  color: #1a1a1a;
  margin-bottom: 6px;
}

.cs-sec-feature p {
  color: #6b7280;
  font-size: clamp(0.84rem, 1.1vw, 0.88rem);
  line-height: 1.55;
  margin: 0;
}

.cs-sec-hero {
  background:
    radial-gradient(600px 280px at 100% 0%, rgba(235, 80, 23, 0.16), transparent 60%),
    linear-gradient(160deg, #1a1a1a 0%, #2b1c14 100%);
  color: #fff;
  border-radius: 22px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.cs-sec-hero::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.cs-sec-hero h3 {
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.25;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.cs-sec-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.86rem, 1.1vw, 0.92rem);
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}

.cs-sec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.cs-sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
}

.cs-sec-badge .bi {
  color: #ffb89b;
  font-size: 0.95rem;
}

.cs-sec-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cs-sec-stat .num {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: #ffb89b;
  line-height: 1;
}

.cs-sec-stat .lbl {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
  display: block;
}

/* =========================
   Recruitment CTA
   Matches Attendance CTA
   ========================= */

.ind-cta {
    max-width: 1180px;
    margin-top: 48px;
}

/* Main dark CTA box */
.ind-cta-panel {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            700px 420px at 0% 40%,
            rgba(235, 80, 23, 0.22),
            transparent 65%
        ),
        radial-gradient(
            700px 420px at 100% 50%,
            rgba(205, 219, 55, 0.18),
            transparent 70%
        ),
        #1a1a1a;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;

    padding: 58px 48px 60px;

    color: #fff;
    box-shadow: none;
}


/* =========================
   Green CTA pill
   ========================= */

.ind-cta-panel .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: rgba(205, 219, 55, 0.18);
    color: #cddb37;

    border: 0;
    padding: 7px 16px;
    border-radius: 999px;

    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.ind-cta-panel .pill .dot {
    background: #cddb37;
}


/* =========================
   Heading
   ========================= */

.ind-cta-panel .section-title {
    color: #fff;

    max-width: 1000px;
    margin: 20px auto 0;

    font-size: clamp(2rem, 3.6vw, 2.65rem);
    font-weight: 700;
    line-height: 1.2;
}

.ind-cta-panel .section-title .text-brand {
    color: var(--brand-lime);
}


/* =========================
   Description
   ========================= */

.ind-cta-panel .section-sub {
    color: #bdb6b0;

    max-width: 650px;
    margin: 18px auto 0;

    font-size: 1rem;
    line-height: 1.55;
}


/* =========================
   Pricing pill
   ========================= */

.ind-cta-pricing {
    width: fit-content;
    margin: 22px auto 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 18px;

    background: rgba(205, 219, 55, 0.16);
    border-radius: 999px;

    color: #cddb37;
    font-size: 0.88rem;
    font-weight: 600;
}

.ind-cta-pricing strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}


/* =========================
   Main orange button
   ========================= */

.ind-cta-panel .btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: #eb5017;
    color: #fff;

    border: 1px solid #eb5017;
    border-radius: 12px;

    padding: 12px 24px;
    font-weight: 600;
}

.ind-cta-panel .btn-login:hover {
    background: #d9430f;
    border-color: #d9430f;
    color: #fff;
}


/* =========================
   Outline buttons
   ========================= */

.ind-cta-panel .btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: transparent;
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;

    padding: 12px 24px;
    font-weight: 600;
}

.ind-cta-panel .btn-register:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}


/* =========================
   Mobile
   ========================= */

@media (max-width: 767.98px) {

    .ind-cta {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .ind-cta-panel {
        padding: 42px 22px;
        border-radius: 22px;
    }

    .ind-cta-panel .section-title {
        font-size: 1.8rem;
    }

    .ind-cta-panel .section-sub {
        max-width: 100%;
    }

    .ind-cta-pricing {
        flex-wrap: wrap;
    }
}
/* ====================================================================
     Recruitment page, page-specific infographic styles.
     Reuses cs-*, py-*, testi-*, ind-cta-* tokens above.
     ==================================================================== */
.rc-hero-art {
  position: relative;
  padding: 8px;
}

.rc-hero-art svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 50px rgba(235, 80, 23, 0.14));
}

/* ===== Lifecycle pipeline (3 lanes) ===== */
.rc-life {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rc-lane {
  background: #fff;
  border: 1px solid #f0e3da;
  border-radius: 20px;
  padding: 20px 22px 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.04);
}

.rc-lane-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.rc-lane-tag {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #eb5017;
  padding: 5px 12px;
  border-radius: 999px;
}

.rc-lane.lane-2 .rc-lane-tag {
  background: #1a1a1a;
}

.rc-lane.lane-3 .rc-lane-tag {
  background: #b07400;
}

.rc-lane-title {
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.rc-lane-line {
  font-size: 0.78rem;
  color: #6b7280;
  margin-left: auto;
}

.rc-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}

.rc-step {
  flex: 1 1 0;
  min-width: 158px;
  background: #fbf7f4;
  border: 1px solid #f0e3da;
  border-radius: 14px;
  padding: 16px 15px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.rc-step:hover {
  background: #fff1ea;
  border-color: rgba(235, 80, 23, 0.4);
  transform: translateY(-3px);
}

.rc-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rc-step-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff1ea;
  color: #eb5017;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}

.rc-lane-2 .rc-step-ico {
  background: #ecefe0;
  color: #5a6a1f;
}

.rc-lane-3 .rc-step-ico {
  background: #fff3cd;
  color: #7a5a00;
}

.rc-step-n {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: rgba(235, 80, 23, 0.16);
  line-height: 1;
}

.rc-lane-2 .rc-step-n {
  color: rgba(26, 26, 26, 0.14);
}

.rc-lane-3 .rc-step-n {
  color: rgba(176, 116, 0, 0.22);
}

.rc-step h6 {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.rc-step p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #6b7280;
}

.rc-step-flag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: #f1fcc8;
  color: #3a4112;
}

@media (max-width: 575.98px) {
  .rc-step {
    min-width: 100%;
  }
}

/* ===== CV pool / candidate search infographic ===== */
.rc-pool-card {
  background: #fff;
  border: 1px solid #f0e3da;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
  height: 100%;
}

.rc-pool-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fbf7f4;
  border: 1px solid #f0e3da;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.rc-pool-bar i {
  color: #eb5017;
  font-size: 1rem;
}

.rc-pool-bar .ph {
  color: #9a8478;
  font-size: 0.86rem;
  flex: 1;
}

.rc-pool-bar .cnt {
  font-size: 0.7rem;
  font-weight: 800;
  color: #2e5f15;
  background: #f1fcc8;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.rc-filter-row {
  margin-bottom: 13px;
}

.rc-filter-l {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b9836b;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rc-filter-l i {
  font-size: 0.85rem;
}

.rc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rc-chip {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: #faf3ee;
  color: #6b4133;
  border: 1px solid #efe7e1;
}

.rc-chip.on {
  background: #eb5017;
  color: #fff;
  border-color: #eb5017;
}

.rc-pool-divider {
  height: 1px;
  background: #f0e3da;
  margin: 18px 0 14px;
  border: 0;
}

.rc-cand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #f0e3da;
  border-radius: 14px;
  margin-bottom: 8px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease;
}

.rc-cand:hover {
  border-color: rgba(235, 80, 23, 0.35);
  transform: translateX(3px);
}

.rc-cand-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.rc-cand-body {
  flex: 1;
  min-width: 0;
}

.rc-cand-name {
  font-weight: 800;
  font-size: 0.86rem;
  color: #1a1a1a;
}

.rc-cand-meta {
  font-size: 0.72rem;
  color: #6b7280;
}

.rc-match {
  text-align: right;
  flex-shrink: 0;
}

.rc-match .pct {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #2e5f15;
  line-height: 1;
}

.rc-match .lbl {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a8478;
}

/* ===== Candidate portal infographic ===== */
.rc-portal {
  background: radial-gradient(600px 280px at 100% 0%, rgba(235, 80, 23, 0.18), transparent 60%),
    linear-gradient(160deg, #1a1a1a 0%, #2b1c14 100%);
  color: #fff;
  border-radius: 22px;
  padding: 26px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.rc-portal-h {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.rc-portal-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ff7849;
  color: #1a1a1a;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.rc-portal-name {
  font-weight: 800;
  font-size: 0.98rem;
}

.rc-portal-role {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.62);
}

.rc-portal-prog {
  margin-left: auto;
  text-align: right;
}

.rc-portal-prog .v {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #cdeaa8;
  font-size: 1.1rem;
  line-height: 1;
}

.rc-portal-prog .l {
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.rc-portal-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 13px 15px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rc-portal-tile .ti {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 120, 73, 0.18);
  color: #ff9a6e;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.rc-portal-tile .tb {
  flex: 1;
  min-width: 0;
}

.rc-portal-tile .tt {
  font-weight: 700;
  font-size: 0.84rem;
}

.rc-portal-tile .ts {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.rc-portal-tile .badge-st {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.badge-st.is-offer {
  background: #cdeaa8;
  color: #2e5f15;
}

.badge-st.is-review {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.rc-portal-chat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 15px;
  margin-top: 4px;
}

.rc-portal-chat .ch-l {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff9a6e;
  margin-bottom: 9px;
}

.rc-bubble {
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 7px;
  max-width: 86%;
}

.rc-bubble.them {
  background: rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 4px;
}

.rc-bubble.me {
  background: #eb5017;
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}
