/* ============================================================
   ESSE INDIA — CAREER PAGE STYLES
   Location: /assets/css/career.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

#career-page {
  --cr-ink: var(--ink, #171225);
  --cr-gray: var(--gray, #6b6478);
  --cr-purple-900: var(--purple-800, #2c1065);
  --cr-purple-700: var(--purple-700, #4b21c4);
  --cr-purple-600: var(--purple-600, #6a35e6);
  --cr-purple-500: var(--purple-500, #8657ec);
  --cr-purple-300: var(--purple-300, #b79bf3);
  --cr-lilac-50: var(--lilac-50, #f7f4ff);
  --cr-lilac-100: var(--lilac-100, #efe8fe);
  --cr-lilac-200: var(--lilac-200, #e2d5fc);
  --cr-gold: var(--gold, #f5b400);
  --cr-radius-lg: var(--radius-lg, 26px);
  --cr-radius-md: var(--radius-md, 18px);
  --cr-shadow-soft: var(--shadow-soft, 0 20px 45px -20px rgba(75,33,196,.25));
  --font-cr-display: 'Fraunces', Georgia, serif;
  --font-cr-body: 'Space Grotesk', var(--font-body, sans-serif);
}

#career-page,
#career-page p,
#career-page span,
#career-page a,
#career-page li { font-family: var(--font-cr-body); }

#career-page h1,
#career-page h2,
#career-page h3,
#career-page h4 {
  font-family: var(--font-cr-display);
  letter-spacing: -.01em;
}

/* ============================================================
   BADGE / EYEBROW
   ============================================================ */
.career-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245, 180, 0, .12);
  color: var(--cr-gold);
  padding: 7px 18px 7px 8px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .4px;
  margin-bottom: 18px;
  border: 1px solid rgba(245, 180, 0, .28);
}
.career-hero-badge .dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cr-gold);
  color: var(--cr-purple-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  animation: crRingPulse 2.2s ease-out infinite;
}
@keyframes crRingPulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 180, 0, .45); }
  100% { box-shadow: 0 0 0 14px rgba(245, 180, 0, 0); }
}

/* ============================================================
   HERO
   ============================================================ */
.cr-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, #3a1a86 0%, transparent 55%),
    radial-gradient(ellipse at 80% 0%, #6a2fd6 0%, transparent 50%),
    linear-gradient(160deg, #150a33 0%, #1e0f45 45%, #170b38 100%);
  padding: 128px 0 96px;
  color: #fff;
}
.cr-hero .aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  animation: crAuroraDrift 16s ease-in-out infinite;
  pointer-events: none;
}
.cr-hero .aurora.a1 { width: 460px; height: 460px; background: #7c3aed; top: -160px; left: -120px; }
.cr-hero .aurora.a2 { width: 380px; height: 380px; background: #f5b400; opacity: .18; top: 10%; right: -100px; animation-delay: -4s; }
.cr-hero .aurora.a3 { width: 340px; height: 340px; background: #3fd0c9; opacity: .16; bottom: -140px; left: 30%; animation-delay: -9s; }
@keyframes crAuroraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4%, -6%) scale(1.08); }
  66% { transform: translate(-5%, 4%) scale(.96); }
}
.cr-hero .grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
}

.cr-hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}
.cr-hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 600;
  line-height: 1.04;
  margin-bottom: 20px;
}
.cr-hero h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(100deg, var(--cr-gold), #ffe08a 45%, var(--cr-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cr-hero .lead {
  font-family: var(--font-cr-body);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .72);
  max-width: 480px;
  margin-bottom: 32px;
}
.cr-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.cr-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  font-family: var(--font-cr-body);
  text-decoration: none;
  transition: .3s;
  border: 1px solid transparent;
  cursor: pointer;
}
.cr-btn-solid { background: var(--cr-gold); color: #221000; }
.cr-btn-solid:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(245, 180, 0, .55); }
.cr-btn-ghost { border-color: rgba(255, 255, 255, .28); color: #fff; }
.cr-btn-ghost:hover { background: rgba(255, 255, 255, .1); transform: translateY(-3px); }

.cr-hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.cr-hero-stats .stat b {
  display: block;
  font-family: var(--font-cr-display);
  font-size: 30px; font-weight: 600;
  background: linear-gradient(100deg, #fff, #e6d9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cr-hero-stats .stat span { font-size: 12.5px; color: rgba(255, 255, 255, .6); }

/* Glass card */
.cr-glass {
  position: relative;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--cr-radius-lg);
  padding: 32px 30px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .55);
}
.cr-glass .tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  color: var(--cr-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cr-glass h3 { color: #fff; font-size: 22px; font-weight: 600; margin-bottom: 18px; }

.cr-perk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.cr-perk-grid .perk {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .88);
  padding: 9px 4px;
  border-bottom: 1px dashed rgba(255, 255, 255, .1);
}
.cr-perk-grid .perk i {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: rgba(245, 180, 0, .14);
  color: var(--cr-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

.cr-rating {
  margin-top: 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .75);
}
.cr-rating .stars { color: var(--cr-gold); letter-spacing: 2px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.cr-marquee {
  position: relative;
  background: linear-gradient(90deg, #1e0f45, #2c1065, #1e0f45);
  border-top: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  padding: 16px 0;
}
.cr-marquee-track {
  display: flex;
  width: max-content;
  animation: crMarquee 26s linear infinite;
}
.cr-marquee-track span {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, .8);
  font-size: 13.5px; font-weight: 600;
  padding: 0 28px;
  white-space: nowrap;
}
.cr-marquee-track span i { color: var(--cr-gold); font-size: 11px; }
.cr-marquee:hover .cr-marquee-track { animation-play-state: paused; }
@keyframes crMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.cr-section { padding: 96px 0; }
.cr-section.alt { background: var(--cr-lilac-50); }
.cr-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.cr-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--cr-purple-600);
  background: var(--cr-lilac-100);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.cr-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--cr-ink);
  line-height: 1.15;
  margin-bottom: 12px;
}
.cr-head p { color: var(--cr-gray); font-size: 15px; line-height: 1.6; }

/* ============================================================
   STATS BENTO
   ============================================================ */
.cr-stats-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cr-stat {
  background: #fff;
  border: 1px solid var(--cr-lilac-100);
  border-radius: var(--cr-radius-md);
  padding: 28px 22px;
  position: relative; overflow: hidden;
  transition: .35s;
}
.cr-stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--cr-shadow-soft);
  border-color: var(--cr-purple-300);
}
.cr-stat .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cr-purple-600), var(--cr-purple-500));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  margin-bottom: 16px;
}
.cr-stat .num {
  font-family: var(--font-cr-display);
  font-size: 34px; font-weight: 600;
  color: var(--cr-ink);
  display: block;
}
.cr-stat .label { font-size: 13px; color: var(--cr-gray); font-weight: 500; }

/* ============================================================
   VALUES BENTO
   ============================================================ */
.cr-values-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.cr-values-bento .value-card.wide { grid-column: span 2; }
.value-card {
  background: #fff;
  border-radius: var(--cr-radius-md);
  padding: 30px 26px;
  box-shadow: var(--cr-shadow-soft);
  transition: .35s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.value-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--cr-purple-600), var(--cr-gold));
  opacity: 0; transition: .35s;
  z-index: 0;
}
.value-card:hover::before { opacity: .07; }
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -18px rgba(75, 33, 196, .35);
}
.value-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--cr-lilac-100);
  color: var(--cr-purple-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
  position: relative; z-index: 1;
  transition: .35s;
}
.value-card:hover .value-icon {
  background: var(--cr-purple-600);
  color: #fff;
  transform: rotate(-6deg) scale(1.06);
}
.value-card h4 {
  font-size: 18px; font-weight: 600;
  margin-bottom: 6px;
  position: relative; z-index: 1;
}
.value-card p {
  font-size: 13.5px;
  color: var(--cr-gray);
  line-height: 1.55;
  position: relative; z-index: 1;
}

/* ============================================================
   FILTER PILLS + ROLE CARDS
   ============================================================ */
.cr-filter-bar {
  display: flex; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.cr-filter-pill {
  border: 1px solid var(--cr-lilac-200);
  background: #fff;
  color: var(--cr-ink);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: .25s;
  font-family: inherit;
}
.cr-filter-pill:hover { border-color: var(--cr-purple-500); }
.cr-filter-pill.active {
  background: var(--cr-purple-600);
  border-color: var(--cr-purple-600);
  color: #fff;
}

.cr-role-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.role-card {
  background: #fff;
  border-radius: var(--cr-radius-md);
  padding: 28px 26px;
  border: 1px solid var(--cr-lilac-100);
  transition: .35s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.role-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cr-purple-600), var(--cr-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.role-card:hover::before { transform: scaleX(1); }
.role-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--cr-shadow-soft);
  border-color: var(--cr-purple-300);
}
.role-card-top {
  display: flex; justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.role-card .role-tag {
  display: inline-block;
  background: var(--cr-lilac-100);
  color: var(--cr-purple-700);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
}
.role-card .role-num {
  font-family: var(--font-cr-display);
  font-size: 26px;
  color: var(--cr-lilac-200);
  font-weight: 600;
}
.role-card h4 { font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.role-card .role-location {
  font-size: 13px;
  color: var(--cr-gray);
  margin-bottom: 12px;
}
.role-card .role-location i { color: var(--cr-purple-500); margin-right: 6px; }
.role-card p {
  font-size: 13.5px;
  color: var(--cr-gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.role-card .role-tags {
  display: flex; gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.role-card .role-tags span {
  font-size: 11px;
  background: var(--cr-lilac-50);
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--cr-purple-700);
  font-weight: 600;
}
.role-card .apply-link {
  font-weight: 700;
  color: var(--cr-purple-600);
  display: inline-flex; align-items: center; gap: 6px;
  transition: .25s;
  font-size: 14px;
  margin-top: auto;
  text-decoration: none;
}
.role-card .apply-link i { transition: .25s; font-size: 12px; }
.role-card .apply-link:hover i { transform: translateX(6px); }
.role-card .apply-link:hover { color: var(--cr-purple-700); }
.role-card.cr-hidden { display: none; }

.cr-no-fit-note {
  text-align: center;
  margin-top: 34px;
  color: var(--cr-gray);
  font-size: 13px;
}
.cr-no-fit-note i { color: var(--cr-purple-500); }
.cr-no-fit-note a {
  color: var(--cr-purple-600);
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================================
   CULTURE
   ============================================================ */
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.culture-text ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  list-style: none;
  padding: 0;
  margin-top: 8px;
}
.culture-text ul li {
  font-size: 13.5px;
  display: flex; align-items: center; gap: 9px;
  color: var(--cr-ink);
}
.culture-text ul li i { color: var(--cr-purple-500); font-size: 14px; }
.culture-text p {
  color: var(--cr-gray);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.culture-image {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, #4b21c4 0%, transparent 60%),
    linear-gradient(150deg, #2c1065, #6a35e6 120%);
  border-radius: var(--cr-radius-lg);
  padding: 44px 34px;
  color: #fff;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: center;
}
.culture-image .aurora-dot {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--cr-gold);
  opacity: .18;
  filter: blur(50px);
  bottom: -60px; right: -40px;
  animation: crAuroraDrift 12s ease-in-out infinite;
}
.culture-image .big-icon {
  font-size: 56px;
  color: rgba(255, 255, 255, .12);
  position: absolute; top: 20px; right: 24px;
}
.culture-image h3 {
  font-size: 26px; font-weight: 600;
  margin-bottom: 8px;
  position: relative;
}
.culture-image p {
  opacity: .88;
  font-size: 14px;
  max-width: 380px;
  line-height: 1.6;
  position: relative;
}
.culture-image .mini-stats {
  display: flex; gap: 30px;
  margin-top: 24px;
  position: relative;
}
.culture-image .mini-stats div b {
  display: block;
  font-family: var(--font-cr-display);
  font-size: 28px; font-weight: 600;
}
.culture-image .mini-stats div span { font-size: 12.5px; opacity: .75; }

/* ============================================================
   FAQ
   ============================================================ */
.cr-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq-item-line {
  display: flex; align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid var(--cr-lilac-100);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: .25s;
}
.faq-item-line:hover { border-color: var(--cr-purple-300); }
.faq-item-line.active { border-color: var(--cr-purple-500); box-shadow: var(--cr-shadow-soft); }
.faq-item-line .idx {
  flex-shrink: 0;
  font-family: var(--font-cr-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--cr-purple-300);
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--cr-lilac-50);
  display: flex; align-items: center; justify-content: center;
  transition: .3s;
}
.faq-item-line.active .idx { background: var(--cr-purple-600); color: #fff; }
.faq-item-line .q-text {
  font-weight: 600;
  font-size: 15px;
  color: var(--cr-ink);
  flex: 1;
}
.faq-item-line .q-text .faq-answer {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: var(--cr-gray);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, margin .3s ease;
  margin-top: 0;
}
.faq-item-line.active .q-text .faq-answer { max-height: 200px; margin-top: 8px; }
.faq-item-line .chevron {
  flex-shrink: 0;
  color: var(--cr-purple-300);
  font-size: 12px;
  transition: .3s;
  margin-top: 4px;
}
.faq-item-line.active .chevron {
  transform: rotate(180deg);
  color: var(--cr-purple-700);
}

.faq-cta-box {
  max-width: 800px;
  margin: 36px auto 0;
  background: linear-gradient(135deg, var(--cr-lilac-50), #fff);
  border: 1px solid var(--cr-lilac-200);
  border-radius: var(--cr-radius-md);
  padding: 32px 36px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 20px;
}
.faq-cta-box .cta-text h4 {
  font-size: 17px; font-weight: 700;
  color: var(--cr-ink);
  margin-bottom: 2px;
}
.faq-cta-box .cta-text p { font-size: 13.5px; color: var(--cr-gray); margin: 0; }
.faq-cta-box .cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.faq-cta-box .btn-sm {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: .3s;
}
.faq-cta-box .btn-primary-sm {
  background: var(--cr-purple-600);
  color: #fff;
  border: 1px solid var(--cr-purple-600);
}
.faq-cta-box .btn-primary-sm:hover {
  background: var(--cr-purple-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106, 53, 230, .25);
}
.faq-cta-box .btn-outline-sm {
  background: transparent;
  color: var(--cr-purple-600);
  border: 1px solid var(--cr-lilac-200);
}
.faq-cta-box .btn-outline-sm:hover {
  background: var(--cr-lilac-50);
  border-color: var(--cr-purple-500);
}

/* ============================================================
   ELIGIBILITY / TRUST / FINAL CTA
   ============================================================ */
.elig-banner {
  background: linear-gradient(135deg, var(--cr-purple-900), var(--cr-purple-500));
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.elig-banner .blob-d {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -100px; right: -100px;
}
.elig-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 30px;
  flex-wrap: wrap;
  position: relative; z-index: 2;
}
.elig-inner h3 {
  font-family: var(--font-cr-display);
  font-size: 24px; font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}
.elig-inner p { font-size: 14px; opacity: .85; max-width: 480px; color: #fff; }
.btn-white { background: #fff; color: var(--cr-purple-700); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -14px rgba(0, 0, 0, .35); }

.trust-strip {
  padding: 54px 0;
  background: #fff;
  border-top: 1px solid var(--cr-lilac-100);
  border-bottom: 1px solid var(--cr-lilac-100);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-point { display: flex; align-items: flex-start; gap: 12px; }
.trust-point i {
  font-size: 20px;
  color: var(--cr-purple-500);
  margin-top: 3px;
}
.trust-point b { display: block; font-size: 13.5px; margin-bottom: 3px; }
.trust-point span { font-size: 12px; color: var(--cr-gray); }

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 30% 20%, #4b21c4, transparent 60%),
    linear-gradient(150deg, #2c1065, #170b38 120%);
  color: #fff;
}
.cta-inner h2 {
  font-family: var(--font-cr-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
}
.cta-inner p {
  margin: 16px 0 34px;
  opacity: .8;
  font-size: clamp(13.5px, 2vw, 15px);
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-plane {
  position: absolute;
  font-size: 30px;
  color: rgba(255, 255, 255, .4);
  animation: crFly 14s linear infinite;
  top: 20%;
}
@keyframes crFly {
  0% { left: -60px; top: 20%; }
  50% { left: 60%; top: 8%; }
  100% { left: 120%; top: 16%; }
}
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  filter: blur(2px);
}
.cloud.c1 { width: 140px; height: 50px; top: 12%; left: 8%; animation: crDrift 20s linear infinite; }
.cloud.c2 { width: 100px; height: 38px; top: 64%; left: 70%; animation: crDrift 26s linear infinite reverse; }
.cloud.c3 { width: 80px; height: 30px; top: 30%; left: 50%; animation: crDrift 22s linear infinite; }
@keyframes crDrift {
  0% { transform: translateX(0); }
  100% { transform: translateX(120px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .cr-hero-grid { grid-template-columns: 1fr; }
  .cr-hero { padding: 100px 0 70px; }
  .cr-stats-bento { grid-template-columns: repeat(2, 1fr); }
  .cr-values-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .cr-values-bento .value-card.wide { grid-column: span 2; }
  .culture-grid { grid-template-columns: 1fr; }
  .culture-text ul { grid-template-columns: 1fr; }
  .cr-role-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .cr-stats-bento { grid-template-columns: 1fr; }
  .cr-values-bento { grid-template-columns: 1fr; }
  .cr-values-bento .value-card.wide { grid-column: span 1; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .elig-inner { flex-direction: column; text-align: center; }
  .cta-plane, .cloud { display: none; }
  .final-cta { padding: 64px 0; }
  .faq-cta-box { flex-direction: column; text-align: center; padding: 28px 20px; }
  .faq-cta-box .cta-btns { justify-content: center; }
  .role-card { padding: 22px 18px; }
  .cr-hero-stats { gap: 22px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .cr-hero .aurora,
  .cr-marquee-track,
  .cta-plane,
  .cloud,
  .culture-image .aurora-dot,
  .career-hero-badge .dot {
    animation: none !important;
  }
}