/* ============================================================
   GEANY SOFTECH — careers.css
   AI-Style Corporate Design — Careers Page
   ============================================================ */

/* ── Reuse CSS Variables from about-team.css ── */
:root {
  --gs-orange: #fe9402;
  --gs-orange2: #fd5f24;
  --gs-red: #f53548;
  --gs-purple: #cd3576;
  --gs-navy: #0A1628;
  --gs-navy2: #0f1e38;
  --gs-white: #ffffff;
  --gs-gray: #f4f6fb;
  --gs-text: #1e293b;
  --gs-muted: #64748b;
  --gs-grad: linear-gradient(135deg, #fe9402 0%, #fd5f24 33%, #f53548 66%, #cd3576 100%);
  --gs-grad-r: linear-gradient(to right, #fe9402, #fd5f24, #f53548, #cd3576);
  --gs-grad-soft: linear-gradient(135deg,
      rgba(254, 148, 2, .08) 0%, rgba(253, 95, 36, .07) 40%,
      rgba(245, 53, 72, .06) 70%, rgba(205, 53, 118, .06) 100%);
  --gs-shadow-sm: 0 2px 12px rgba(0, 0, 0, .07);
  --gs-shadow: 0 8px 32px rgba(0, 0, 0, .10);
  --gs-shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
  --gs-radius: 16px;
  --gs-radius-lg: 24px;
  --gs-trans: .3s ease;
}

body {
  background: #fafbff;
}

/* ── Reveal animations ── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-fade {
  opacity: 0;
  transition: opacity .6s ease;
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-fade.revealed {
  opacity: 1;
  transform: none;
}

/* ── Shared label / title ── */
.au-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 6px 0;
  margin-bottom: 12px;
}

.au-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--gs-navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.au-sub {
  font-size: 1.05rem;
  color: var(--gs-muted);
  max-width: 640px;
  line-height: 1.8;
}

.au-section-header {
  margin-bottom: 60px;
}

.au-section-header.text-center .au-sub {
  margin: 0 auto;
}

/* ── Buttons ── */
.au-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--gs-trans);
  position: relative;
  overflow: hidden;
}

.au-btn--primary {
  background: var(--gs-grad);
  color: #fff;
  box-shadow: 0 6px 24px rgba(245, 53, 72, .35);
}

.au-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(245, 53, 72, .45);
}

.au-btn--white {
  background: #fff;
  color: var(--gs-navy);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
}

.au-btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
}

.au-btn--outline {
  border: 2px solid rgba(255, 255, 255, .55);
  color: #fff;
  background: transparent;
}

.au-btn--outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

/* ── Header AI enhancements ── */
.site-header {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(254, 148, 2, .12);
  transition: box-shadow .3s, background .3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .08), 0 1px 0 rgba(254, 148, 2, .15);
}

.header__bg-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.header__grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(254, 148, 2, .08), transparent);
  animation: hline-pulse 3s ease-in-out infinite;
}

.header__grid-line--1 {
  left: 25%;
  animation-delay: 0s;
}

.header__grid-line--2 {
  left: 50%;
  animation-delay: .8s;
}

.header__grid-line--3 {
  left: 75%;
  animation-delay: 1.6s;
}

@keyframes hline-pulse {

  0%,
  100% {
    opacity: 0
  }

  50% {
    opacity: 1
  }
}

.header__inner {
  position: relative;
  z-index: 1;
}

.logo__wrapper {
  position: relative;
  display: inline-flex;
}

.logo__glow {
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  background: var(--gs-grad);
  opacity: 0;
  filter: blur(10px);
  transition: .3s;
}

.logo:hover .logo__glow {
  opacity: .18;
}

.nav__link {
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gs-grad);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s;
}

.nav__item.active>.nav__link::after,
.nav__link:hover::after {
  transform: scaleX(1);
}

.btn--nav {
  background: var(--gs-grad) !important;
  box-shadow: 0 4px 18px rgba(245, 53, 72, .35) !important;
  border-radius: 50px !important;
  gap: 7px;
}

.btn--nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 53, 72, .45) !important;
}

.dropdown {
  border: 1px solid rgba(254, 148, 2, .15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .13), 0 0 0 1px rgba(254, 148, 2, .08);
  border-radius: 18px;
}

.dropdown__link:hover {
  background: var(--gs-grad-soft);
  color: var(--gs-orange);
}

.dropdown__link i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Footer ── */
.footer {
  background: var(--gs-navy);
  position: relative;
  overflow: hidden;
}

.footer__top-bar {
  height: 3px;
  width: 100%;
  background: var(--gs-grad);
}

.footer__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
}

.footer__main {
  position: relative;
  z-index: 1;
  padding: 64px 0 44px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.footer__heading-accent {
  display: block;
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: var(--gs-grad);
  flex-shrink: 0;
}

.footer__tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 22px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(254, 148, 2, .2);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  transition: var(--gs-trans);
}

.tech-pill i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-pill:hover {
  background: rgba(254, 148, 2, .12);
  border-color: rgba(254, 148, 2, .4);
  color: #fff;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
}

.footer__contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(254, 148, 2, .12);
  border: 1px solid rgba(254, 148, 2, .2);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.footer__contact-icon i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: .85rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, .6);
  transition: var(--gs-trans);
}

.footer__contact a:hover {
  color: var(--gs-orange);
}

.footer__social-link {
  transition: var(--gs-trans);
}

.footer__social-link:hover {
  background: var(--gs-grad);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(245, 53, 72, .4);
}

.footer__links a:hover {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__links a i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, .35);
  transition: var(--gs-trans);
}

.footer__bottom-links a:hover {
  color: var(--gs-orange);
}

/* ============================================================
   CAREERS HERO
   ============================================================ */
.cr-hero {
  position: relative;
  overflow: hidden;
  min-height: var(--hero-h, 100dvh);
  display: flex;
  align-items: center;
  background: var(--gs-navy);
  padding: clamp(90px, 12vh, 140px) 0 clamp(60px, 8vh, 90px);
  box-sizing: border-box;
}

/* Aurora blobs */
.cr-hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cr-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  transition: transform 1.2s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
}

.cr-blob--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, #fe9402 0%, transparent 70%);
  opacity: .4;
}

.cr-blob--2 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, #f53548 0%, transparent 70%);
  opacity: .35;
}

.cr-blob--3 {
  width: 450px;
  height: 450px;
  bottom: -150px;
  left: 30%;
  background: radial-gradient(circle, #cd3576 0%, transparent 70%);
  opacity: .3;
}

.cr-blob--4 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  right: 15%;
  background: radial-gradient(circle, #fd5f24 0%, transparent 70%);
  opacity: .25;
}

/* Grid */
.cr-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(254, 148, 2, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(254, 148, 2, .07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: cr-grid-drift 20s linear infinite;
}

@keyframes cr-grid-drift {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 60px 60px
  }
}

/* Hero shapes */
.cr-hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cr-shape {
  position: absolute;
}

.cr-shape--hex {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 8%;
  background: rgba(254, 148, 2, .08);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: cr-float 8s ease-in-out infinite;
}

.cr-shape--ring {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 25%;
  border: 2px solid rgba(245, 53, 72, .2);
  border-radius: 50%;
  animation: cr-spin 20s linear infinite;
}

.cr-shape--circle {
  width: 80px;
  height: 80px;
  top: 35%;
  left: 5%;
  border: 2px solid rgba(205, 53, 118, .25);
  border-radius: 50%;
  animation: cr-float 6s ease-in-out infinite reverse;
}

.cr-shape--hex2 {
  width: 80px;
  height: 80px;
  bottom: 25%;
  left: 12%;
  background: rgba(253, 95, 36, .07);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: cr-float 10s ease-in-out infinite;
}

@keyframes cr-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-18px) rotate(15deg)
  }
}

@keyframes cr-spin {
  to {
    transform: rotate(360deg)
  }
}

/* Hero content */
.cr-hero__content {
  position: relative;
  z-index: 2;
}

.cr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(254, 148, 2, .12);
  border: 1px solid rgba(254, 148, 2, .3);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gs-orange);
  margin-bottom: 22px;
}

.cr-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gs-orange);
  box-shadow: 0 0 8px var(--gs-orange);
  animation: cr-pulse-dot 1.5s ease-in-out infinite;
}

@keyframes cr-pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.4);
    opacity: .6
  }
}

.cr-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.cr-hero__title-grad {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.cr-hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 28px;
}

.cr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 40px;
}

.cr-breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: var(--gs-trans);
}

.cr-breadcrumb a:hover {
  color: var(--gs-orange);
}

.cr-breadcrumb span {
  color: var(--gs-orange);
}

.cr-breadcrumb i.fa-chevron-right {
  font-size: .6rem;
}

/* Stat pills */
.cr-hero__pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cr-hero__pill {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--gs-trans);
}

.cr-hero__pill:hover {
  background: rgba(254, 148, 2, .15);
  border-color: rgba(254, 148, 2, .35);
  transform: translateY(-4px);
}

.cr-hero__pill span {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.cr-hero__pill small {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Scroll indicator */
.cr-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .35);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cr-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(254, 148, 2, .6), transparent);
  animation: cr-scroll-pulse 2s ease-in-out infinite;
}

@keyframes cr-scroll-pulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(1)
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15)
  }
}

/* ============================================================
   WHY JOIN US — PERKS SECTION
   ============================================================ */
.cr-perks {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cr-perks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gs-grad);
}

.cr-perks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 0;
}

.cr-perk-card {
  background: var(--gs-gray);
  border-radius: var(--gs-radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(254, 148, 2, .08);
  transition: var(--gs-trans);
  position: relative;
  overflow: hidden;
}

.cr-perk-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gs-grad-soft);
  opacity: 0;
  transition: var(--gs-trans);
  border-radius: inherit;
}

.cr-perk-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(254, 148, 2, .22);
}

.cr-perk-card:hover::after {
  opacity: 1;
}

.cr-perk-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
  background: var(--gs-grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(245, 53, 72, .3);
  position: relative;
  z-index: 1;
  transition: var(--gs-trans);
}

.cr-perk-card:hover .cr-perk-card__icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 12px 32px rgba(245, 53, 72, .4);
}

.cr-perk-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gs-navy);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.cr-perk-card p {
  font-size: .875rem;
  color: var(--gs-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================================
   JOB LISTINGS SECTION
   ============================================================ */
.cr-jobs {
  padding: 90px 0;
  background: var(--gs-gray);
  position: relative;
  overflow: hidden;
}

.cr-jobs__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .4;
  background-image: radial-gradient(circle, rgba(254, 148, 2, .06) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Jobs grid */
.cr-jobs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Job Card */
.cr-job-card {
  background: #fff;
  border-radius: var(--gs-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  transition: var(--gs-trans);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--gs-shadow-sm);
}

.cr-job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gs-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.cr-job-card:hover::before {
  transform: scaleX(1);
}

.cr-job-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(254, 148, 2, .18);
}

/* Card image */
.cr-job-card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.cr-job-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.cr-job-card:hover .cr-job-card__img img {
  transform: scale(1.06);
}

.cr-job-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 22, 40, .85) 100%);
}

.cr-job-card__type-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gs-grad);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(245, 53, 72, .4);
}

/* Card body */
.cr-job-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Role icon + title */
.cr-job-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.cr-job-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: var(--gs-grad-soft);
  border: 1px solid rgba(254, 148, 2, .2);
  position: relative;
  overflow: hidden;
  transition: var(--gs-trans);
}

.cr-job-card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.cr-job-card__icon i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cr-job-card:hover .cr-job-card__icon {
  background: var(--gs-grad);
  border-color: transparent;
}

.cr-job-card:hover .cr-job-card__icon i {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cr-job-card__title {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--gs-navy);
  line-height: 1.2;
}

/* Meta info */
.cr-job-card__meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.cr-job-card__meta-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .83rem;
  color: var(--gs-muted);
}

.cr-job-card__meta-item i {
  width: 16px;
  text-align: center;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.cr-job-card__desc {
  font-size: .9rem;
  color: var(--gs-text);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

/* Apply button */
.cr-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  background: var(--gs-navy);
  color: #fff;
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--gs-navy);
  transition: var(--gs-trans);
  letter-spacing: .3px;
  position: relative;
  overflow: hidden;
}

.cr-apply-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gs-grad);
  opacity: 0;
  transition: opacity .3s ease;
}

.cr-apply-btn:hover::before {
  opacity: 1;
}

.cr-apply-btn span,
.cr-apply-btn i {
  position: relative;
  z-index: 1;
}

.cr-apply-btn i {
  transition: transform .3s ease;
}

.cr-apply-btn:hover i {
  transform: translateX(5px);
}

.cr-apply-btn:hover {
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(245, 53, 72, .4);
  color: #fff;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cr-cta {
  background: var(--gs-navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cr-cta__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cr-cta__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cr-cta__blob--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, #fe9402 0%, transparent 70%);
  opacity: .25;
}

.cr-cta__blob--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, #cd3576 0%, transparent 70%);
  opacity: .2;
}

.cr-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.cr-cta__text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.cr-cta__text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .65);
  max-width: 520px;
}

.cr-cta__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .cr-perks__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cr-jobs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
  }
}

@media (max-width:640px) {
  .cr-perks__grid {
    grid-template-columns: 1fr;
  }

  .cr-jobs__grid {
    grid-template-columns: 1fr;
  }

  .cr-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .cr-cta__btns {
    justify-content: center;
  }

  .cr-hero__pills {
    gap: 10px;
  }

  .cr-hero__pill {
    padding: 10px 14px;
  }

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

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-links {
    justify-content: center;
  }
}