/* ============================================================
   careers.css — Page-specific styles for Technzone Careers
   ============================================================ */

/* ─────────────────────────────────────────────────────────
   SECTION 1 — Careers Hero
───────────────────────────────────────────────────────── */
.careers-hero {
  background: linear-gradient(135deg, #08080f 0%, #120810 50%, #08080f 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 72, 95, 0.09) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.careers-hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
}

.careers-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237, 72, 95, 0.12);
  border: 1px solid rgba(237, 72, 95, 0.25);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}

.careers-word {
  display: inline-block;
}

.careers-headline {
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 20px 0 28px;
}

.careers-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 14px;
}

.careers-hero-body {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  margin-bottom: 36px;
}

.careers-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual */
.careers-hero-visual {
  position: relative;
  height: 400px;
}

/* Concentric circles decoration */
.hero-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-circles circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 1;
}

/* Hero main float card */
.careers-main-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 28px 24px;
  width: 260px;
  z-index: 2;
}

.careers-main-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.careers-main-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.careers-main-card-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.careers-main-card-progress {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
  overflow: hidden;
}

.careers-main-card-progress-fill {
  height: 100%;
  width: 72%;
  border-radius: 999px;
  background: var(--primary);
}

.careers-main-card-locations {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Hero float badge */
.careers-hero-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(20, 20, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
  white-space: nowrap;
}

.careers-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.careers-badge-tr {
  top: 16px;
  right: 8px;
}

.careers-badge-bl {
  bottom: 80px;
  left: 0;
}

/* Hero small float card (bottom-right) */
.careers-small-card {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  min-width: 190px;
}

.careers-small-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(237, 72, 95, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.careers-small-card-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.careers-small-card-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────
   SECTION 2 — Why Join Technzone
───────────────────────────────────────────────────────── */
.why-section {
  padding: var(--section-pad);
  background: #fff;
}

.why-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}

.why-header p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card-c {
  padding: 36px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-card-c::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.why-card-c:hover::before {
  transform: scaleY(1);
}

.why-card-c:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}

.why-card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(237, 72, 95, 0.07);
  line-height: 1;
  letter-spacing: -0.04em;
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(237, 72, 95, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.375rem;
  margin-bottom: 24px;
  transition: background 0.25s ease;
}

.why-card-c:hover .why-card-icon {
  background: rgba(237, 72, 95, 0.15);
}

.why-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.why-card-body {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   SECTION 3 — Our Culture
───────────────────────────────────────────────────────── */
.culture-c-section {
  padding: var(--section-pad);
  background: var(--dark);
}

.culture-c-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.culture-c-left h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 12px 0 24px;
}

.culture-c-left p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 16px;
}

.culture-c-blockquote {
  border-left: 3px solid var(--primary);
  padding: 16px 20px;
  margin: 24px 0 0;
  background: rgba(237, 72, 95, 0.05);
  border-radius: 0 8px 8px 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  line-height: 1.7;
}

.culture-c-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.culture-c-card {
  padding: 24px 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.culture-c-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(237, 72, 95, 0.25);
  transform: translateX(4px);
}

.culture-c-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(237, 72, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.125rem;
}

.culture-c-card-content {
  flex: 1;
}

.culture-c-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.culture-c-card-body {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────
   SECTION 4 — What You Will Work On
───────────────────────────────────────────────────────── */
.work-section {
  padding: var(--section-pad);
  background: var(--neutral);
}

.work-header {
  margin-bottom: 56px;
}

.work-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}

.work-header p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 580px;
}

.work-domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work-domain-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-domain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.work-domain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(237, 72, 95, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.work-domain-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.work-domain-body {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   SECTION 5 — Our Values
───────────────────────────────────────────────────────── */
.values-section {
  padding: var(--section-pad);
  background: #fff;
}

.values-header {
  text-align: center;
  margin-bottom: 56px;
}

.values-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 12px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  padding: 32px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-card);
}

.value-card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(237, 72, 95, 0.08);
  line-height: 1;
  letter-spacing: -0.04em;
}

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(237, 72, 95, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.value-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card-body {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   SECTION 6 — Growth & Learning
───────────────────────────────────────────────────────── */
.growth-section {
  padding: var(--section-pad);
  background: var(--dark);
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.growth-visual {
  position: relative;
  height: 360px;
}

/* Growth visual composition */
.growth-infinity {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11rem;
  font-weight: 900;
  color: rgba(237, 72, 95, 0.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.growth-mini-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.growth-mini-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(237, 72, 95, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.growth-mini-card-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.growth-mini-card-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.growth-mini-card-1 {
  top: 20px;
  left: 0;
  min-width: 200px;
}

.growth-mini-card-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  min-width: 190px;
}

.growth-badge {
  position: absolute;
  bottom: 28px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(20, 20, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  z-index: 3;
}

.growth-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.growth-right h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 12px 0 24px;
}

.growth-right p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 16px;
}

.growth-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.growth-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.growth-feature i {
  color: var(--primary);
  font-size: 1.125rem;
}

/* ─────────────────────────────────────────────────────────
   SECTION 7 — Work Environment
───────────────────────────────────────────────────────── */
.env-section {
  padding: var(--section-pad);
  background: #0d0d12;
}

.env-header {
  text-align: center;
  margin-bottom: 56px;
}

.env-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}

.env-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

.env-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.env-card {
  padding: 36px 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.env-card:hover {
  border-color: rgba(237, 72, 95, 0.28);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.env-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(237, 72, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.env-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.env-card-body {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   SECTION 8 — For Fresh Graduates
───────────────────────────────────────────────────────── */
.fresh-section {
  padding: var(--section-pad);
  background: var(--secondary);
}

.fresh-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 64px;
  align-items: center;
}

.fresh-left h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 12px 0 24px;
}

.fresh-left p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.fresh-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 36px 32px;
  color: #fff;
}

.fresh-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.fresh-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.fresh-card-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
  line-height: 1.6;
}

.fresh-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.fresh-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.fresh-check-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   SECTION 9 — Open Positions
───────────────────────────────────────────────────────── */
.positions-section {
  padding: var(--section-pad);
  background: #fff;
}

.positions-header {
  margin-bottom: 56px;
}

.positions-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}

.positions-header p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 600px;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.role-category {
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.role-category:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(237, 72, 95, 0.1);
}

.role-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(237, 72, 95, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.role-cat-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.role-cat-sub {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.role-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.role-apply-btn:hover {
  gap: 10px;
}

/* No-role CTA card */
.no-role-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  margin-top: 8px;
}

.no-role-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(237, 72, 95, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
  margin: 0 auto 24px;
}

.no-role-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.no-role-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .careers-hero-grid {
    grid-template-columns: 1fr;
  }

  .careers-hero-visual {
    display: none;
  }

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

  .culture-c-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .growth-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .growth-visual {
    display: none;
  }

  .fresh-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .careers-headline {
    font-size: clamp(40px, 10vw, 56px);
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
  }

  .work-domains-grid {
    grid-template-columns: 1fr;
  }

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

  .env-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .no-role-card {
    padding: 40px 28px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .careers-hero-cta {
    flex-direction: column;
  }

  .careers-hero-cta .btn {
    text-align: center;
    justify-content: center;
  }
}

/* ── Arabic RTL fixes for careers page ── */
body:lang(ar) .careers-hero-grid,
body:lang(ar) .culture-c-grid,
body:lang(ar) .growth-grid,
body:lang(ar) .fresh-grid {
  direction: rtl;
}

body:lang(ar) .why-cards-grid,
body:lang(ar) .work-domains-grid,
body:lang(ar) .values-grid,
body:lang(ar) .env-cards-grid,
body:lang(ar) .roles-grid {
  direction: rtl;
}

body:lang(ar) .why-card-c::before {
  left: auto;
  right: 0;
  transform-origin: top;
}

body:lang(ar) .work-domain-card {
  border-left: 1px solid var(--border);
  border-right: 3px solid var(--primary);
}

body:lang(ar) .culture-c-card {
  flex-direction: row-reverse;
  text-align: right;
}

body:lang(ar) .culture-c-card:hover {
  transform: translateX(-4px);
}

body:lang(ar) .culture-c-blockquote {
  border-left: none;
  border-right: 3px solid var(--primary);
  border-radius: 8px 0 0 8px;
  text-align: right;
}

body:lang(ar) .why-card-c,
body:lang(ar) .work-domain-card,
body:lang(ar) .value-card,
body:lang(ar) .env-card,
body:lang(ar) .role-category,
body:lang(ar) .fresh-card {
  text-align: right;
}

body:lang(ar) .role-apply-btn {
  flex-direction: row-reverse;
}

body:lang(ar) .no-role-card {
  direction: rtl;
}

body:lang(ar) .fresh-checklist {
  direction: rtl;
}

body:lang(ar) .growth-features {
  direction: rtl;
}

body:lang(ar) .growth-feature {
  flex-direction: row-reverse;
}
